docker_manager/manager-client/tasks/options/preprocess.js

18 lines
606 B
JavaScript

module.exports = {
indexHTMLDebugApp: {
src : 'app/index.html', dest : 'tmp/result/index.html',
options: { context: { dist: false, tests: false } }
},
indexHTMLDebugTests: {
src : 'app/index.html', dest : 'tmp/result/tests/index.html',
options: { context: { dist: false, tests: true } }
},
indexHTMLDistApp: {
src : 'app/index.html', dest : 'tmp/result/index.html',
options: { context: { dist: true, tests: false } }
},
indexHTMLDistTests: {
src : 'app/index.html', dest : 'tmp/result/tests/index.html',
options: { context: { dist: true, tests: true } }
}
};