mirror of
https://github.com/Radarr/Radarr
synced 2025-02-23 14:51:17 +00:00
added phantom support in gulp
This commit is contained in:
parent
08ebc8d292
commit
32d7da91b7
3 changed files with 54 additions and 17 deletions
|
@ -1,4 +1,6 @@
|
||||||
module.exports = {
|
var phantom = require('./phantom');
|
||||||
|
|
||||||
|
var paths = {
|
||||||
src: {
|
src: {
|
||||||
root: './src/UI/',
|
root: './src/UI/',
|
||||||
templates: './src/UI/**/*.hbs',
|
templates: './src/UI/**/*.hbs',
|
||||||
|
@ -17,3 +19,27 @@ module.exports = {
|
||||||
content: './_output/UI/Content/'
|
content: './_output/UI/Content/'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (phantom) {
|
||||||
|
paths = {
|
||||||
|
src: {
|
||||||
|
root: './src/UI.Phantom/',
|
||||||
|
templates: './src/UI.Phantom/**/*.hbs',
|
||||||
|
html: './src/UI.Phantom/*.html',
|
||||||
|
partials: './src/UI.Phantom/**/*Partial.hbs',
|
||||||
|
scripts: './src/UI.Phantom/**/*.js',
|
||||||
|
less: ['./src/UI.Phantom/**/*.less'],
|
||||||
|
content: './src/UI.Phantom/Content/',
|
||||||
|
images: './src/UI.Phantom/Content/Images/**/*',
|
||||||
|
exclude: {
|
||||||
|
libs: '!./src/UI.Phantom/JsLibraries/**'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dest: {
|
||||||
|
root: './_output/UI.Phantom/',
|
||||||
|
content: './_output/UI.Phantom/Content/'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = paths;
|
||||||
|
|
10
gulp/phantom.js
Normal file
10
gulp/phantom.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
var args = require('yargs').argv;
|
||||||
|
// Switch to phantom.
|
||||||
|
// Example:
|
||||||
|
// gulp --phantom
|
||||||
|
|
||||||
|
var phantom = !!args.phantom;
|
||||||
|
|
||||||
|
console.log('Phantom:', phantom);
|
||||||
|
|
||||||
|
module.exports = phantom;
|
|
@ -25,8 +25,8 @@
|
||||||
"gulp-less": "2.0.1",
|
"gulp-less": "2.0.1",
|
||||||
"gulp-print": "1.1.0",
|
"gulp-print": "1.1.0",
|
||||||
"gulp-replace": "0.5.2",
|
"gulp-replace": "0.5.2",
|
||||||
"gulp-stripbom": "1.0.4",
|
|
||||||
"gulp-run": "1.6.6",
|
"gulp-run": "1.6.6",
|
||||||
|
"gulp-stripbom": "1.0.4",
|
||||||
"gulp-webpack": "1.2.0",
|
"gulp-webpack": "1.2.0",
|
||||||
"gulp-wrap": "0.10.1",
|
"gulp-wrap": "0.10.1",
|
||||||
"handlebars": "2.0.0",
|
"handlebars": "2.0.0",
|
||||||
|
@ -34,6 +34,7 @@
|
||||||
"jshint-stylish": "1.0.0",
|
"jshint-stylish": "1.0.0",
|
||||||
"run-sequence": "1.0.2",
|
"run-sequence": "1.0.2",
|
||||||
"streamqueue": "0.1.1",
|
"streamqueue": "0.1.1",
|
||||||
"webpack": "1.5.3"
|
"webpack": "1.5.3",
|
||||||
|
"yargs": "^3.15.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue