mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
fd6f2551bb
no issue
- Convert validator to an npm dependency
- clean up validator imports
- fix validator function imports
- remove unused validator extensions
- Convert devicejs to an npm dependency
- Convert remaining used bower deps to npm deps
- 🔥 Remove bower & unused bower dependencies
- remove globals imports in favor of direct module imports where possible
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
/* eslint-env node */
|
|
/* eslint-disable object-shorthand */
|
|
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
|
// Find all of the task which start with `grunt-` and load them, rather than explicitly declaring them all
|
|
require('matchdep').filterDev(['grunt-*', '!grunt-cli']).forEach(grunt.loadNpmTasks);
|
|
|
|
grunt.initConfig({
|
|
clean: {
|
|
built: {
|
|
src: ['dist/**']
|
|
},
|
|
dependencies: {
|
|
src: ['node_modules/**']
|
|
},
|
|
tmp: {
|
|
src: ['tmp/**']
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
csscomb: {
|
|
files: ['app/styles/**/*.css'],
|
|
tasks: ['shell:csscombfix']
|
|
}
|
|
},
|
|
|
|
shell: {
|
|
'npm-install': {
|
|
command: 'yarn install'
|
|
},
|
|
|
|
ember: {
|
|
command: function (mode) {
|
|
let liveReloadBaseUrl = grunt.option('live-reload-base-url') || '/ghost/';
|
|
|
|
switch (mode) {
|
|
case 'prod':
|
|
return 'npm run build -- --environment=production --silent';
|
|
case 'dev':
|
|
return 'npm run build';
|
|
case 'watch':
|
|
return `npm run start -- --live-reload-base-url=${liveReloadBaseUrl} --live-reload-port=4201`;
|
|
}
|
|
}
|
|
},
|
|
|
|
csscombfix: {
|
|
command: 'csscomb -c app/styles/csscomb.json -v app/styles'
|
|
},
|
|
|
|
csscomblint: {
|
|
command: 'csscomb -c app/styles/csscomb.json -lv app/styles'
|
|
},
|
|
|
|
test: {
|
|
command: 'npm test'
|
|
},
|
|
|
|
options: {
|
|
preferLocal: true
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.registerTask('init', 'Install the client dependencies',
|
|
['shell:npm-install']
|
|
);
|
|
};
|