mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 09:48:51 -03:30
Use `make ui-devel` to build a development/debug version of the UI, with source maps, without raising any additional browser-sync or filesystem polling.
19 lines
772 B
JavaScript
19 lines
772 B
JavaScript
module.exports = {
|
|
dev: {
|
|
tasks: ['copy:vendor', 'copy:assets', 'copy:partials', 'copy:languages', 'copy:config', 'less:dev'],
|
|
},
|
|
// This concurrent target is intended for development ui builds that do not require raising browser-sync or filesystem polling
|
|
devNoSync: {
|
|
tasks: ['copy:vendor', 'copy:assets', 'copy:partials', 'copy:languages', 'copy:config', 'less:dev', 'webpack:dev'],
|
|
},
|
|
prod: {
|
|
tasks: ['newer:copy:vendor', 'newer:copy:assets', 'newer:copy:partials', 'newer:copy:languages', 'newer:copy:config', 'newer:less:prod']
|
|
},
|
|
watch: {
|
|
tasks: ['watch:css', 'watch:partials', 'watch:assets', ['webpack:dev', 'watch:config']],
|
|
options: {
|
|
logConcurrentOutput: true
|
|
}
|
|
}
|
|
};
|