mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
1aa454eda4
Includes multiple changes to the shifter task to simplify and support this: * Use grunt.file for shifter yui 'module' detection rather than our own 70 line function * Use grunt.util.spawn rather than our own exec for shifter * Improve behaviour on various yui subdirectories We have to add the 'async' depndency to npm because we are running multiple async operations in the single task. We use async.eachSeries to run each shifter job sequentally (else the output would be unreadable when running async). We also run shifter in non-recursive mode on the module directory so its not building everything (thanks to Ryan for pointing this out!)
15 lines
350 B
JSON
15 lines
350 B
JSON
{
|
|
"name": "Moodle",
|
|
"private": true,
|
|
"description": "Moodle",
|
|
"devDependencies": {
|
|
"async": "^1.5.2",
|
|
"grunt": "0.4.5",
|
|
"grunt-contrib-jshint": "0.11.3",
|
|
"grunt-contrib-less": "1.1.0",
|
|
"grunt-contrib-uglify": "0.11.0",
|
|
"grunt-contrib-watch": "0.6.1",
|
|
"shifter": "0.5.0"
|
|
}
|
|
}
|