2014-09-20 11:49:04 -04:00
|
|
|
module.exports =
|
|
|
|
grunt:
|
|
|
|
options:
|
|
|
|
reload: true
|
|
|
|
files:
|
|
|
|
'grunt/*'
|
|
|
|
tasks: ['coffeelint:tasks', 'default']
|
2015-02-15 07:55:06 -05:00
|
|
|
po2crx_locales:
|
|
|
|
files: ['../omega-locales/**/*']
|
|
|
|
tasks: ['po2crx:locales']
|
2014-09-20 11:49:04 -04:00
|
|
|
copy_web:
|
|
|
|
files: ['node_modules/omega-web/build/**/*']
|
|
|
|
tasks: ['copy:web']
|
|
|
|
copy_target:
|
|
|
|
files: ['node_modules/omega-target/omega_target.min.js']
|
|
|
|
tasks: ['copy:target']
|
|
|
|
copy_overlay:
|
|
|
|
files: ['overlay/**/*']
|
|
|
|
tasks: ['copy:overlay']
|
2017-03-14 00:25:46 -04:00
|
|
|
copy_target_popup:
|
2017-08-02 22:46:08 -04:00
|
|
|
files: ['src/js/omega_target_popup.js']
|
2017-03-14 00:25:46 -04:00
|
|
|
tasks: ['copy:target_popup']
|
2017-08-02 22:46:08 -04:00
|
|
|
coffee:
|
2014-09-20 11:49:04 -04:00
|
|
|
files: ['src/**/*.coffee']
|
2017-08-02 22:46:08 -04:00
|
|
|
tasks: ['coffeelint:src', 'browserify', 'coffee', 'copy:target_self']
|
2017-04-13 22:41:08 -04:00
|
|
|
browserify_omega_webext_proxy_script:
|
2017-08-02 22:46:08 -04:00
|
|
|
files: ['src/js/omega_webext_proxy_script.js']
|
2017-04-13 22:41:08 -04:00
|
|
|
tasks: ['browserify:omega_webext_proxy_script']
|