accountant-ui/grunt-config/shell.js

12 lines
234 B
JavaScript
Raw Normal View History

2015-06-13 17:37:35 +02:00
module.exports = {
2016-10-09 20:33:59 +02:00
npmInstall: {
2015-06-13 17:37:35 +02:00
command: 'npm install'
2016-01-29 13:42:25 +01:00
},
2016-10-09 20:33:59 +02:00
bowerInstall: {
2016-01-29 13:42:25 +01:00
command: 'bower install'
2016-01-29 14:02:55 +01:00
},
2016-10-09 20:33:59 +02:00
pipInstall: {
2016-01-29 14:02:55 +01:00
command: 'pip install --upgrade --requirement requirements.txt'
2015-06-13 17:37:35 +02:00
}
};