mirror of
https://github.com/ansible/awx.git
synced 2026-03-21 10:57:36 -02:30
UI Build System - new interface
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.
This commit is contained in:
@@ -21,12 +21,21 @@ module.exports = function(grunt) {
|
||||
// writes environment variables for development. current manages:
|
||||
// browser-sync + websocket proxy
|
||||
|
||||
grunt.registerTask('sync', [
|
||||
'browserSync:http',
|
||||
'concurrent:watch'
|
||||
]);
|
||||
|
||||
grunt.registerTask('dev', [
|
||||
'clean:tmp',
|
||||
'clean:static',
|
||||
'concurrent:dev',
|
||||
'browserSync:http',
|
||||
'concurrent:watch'
|
||||
]);
|
||||
|
||||
grunt.registerTask('devNoSync', [
|
||||
'clean:tmp',
|
||||
'clean:static',
|
||||
'concurrent:devNoSync',
|
||||
]);
|
||||
|
||||
grunt.registerTask('release', [
|
||||
|
||||
Reference in New Issue
Block a user