-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Gruntfile.js
51 lines (46 loc) · 2.07 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module.exports = function(grunt) {
// load all tasks from package.json
require('load-grunt-config')(grunt);
require('time-grunt')(grunt);
require('google-closure-compiler').grunt(grunt, {
platfrom: 'native'
});
/**
* TASKS
*/
// build everything ready for a commit
grunt.registerTask('build', ['css', 'translations', 'js']);
// build translations
grunt.registerTask('build:translations', ['translations', 'js']);
// build utils
grunt.registerTask('build:utils', ['closure-compiler:utils']);
// just CSS
grunt.registerTask('css', ['sass', 'cssmin']);
// just images
grunt.registerTask('img', ['generate-sprite', 'css']);
// just javascript
grunt.registerTask('js', ['shell:eslint', 'shell:genTsDeclaration', 'shell:genReactTsDeclaration', 'shell:buildJs', 'replace', 'react', 'vue']);
grunt.registerTask('jsfast', ['shell:buildJs', 'replace']);
// just react
grunt.registerTask('react', ['replace:reactWithUtils', 'shell:buildReact', 'replace:removeImport']);
// just vue
grunt.registerTask('vue', ['replace:vueWithUtils', 'shell:buildVue', 'replace:removeImport']);
// Run tests with a server so that async imports/fetches work.
grunt.registerTask('jasmine:test', ['connect:test', 'jasmine']);
grunt.registerTask('jasmine:interactive', () => {
grunt.event.once('connect.test.listening', (host, port) => {
const origin = `http://${host === '::' ? 'localhost' : host}:${port}`;
console.log(`
To view and debug tests in your browser, go to ${origin}/spec.html
To play with a demo of the package, go to ${origin}/demo.html
`);
});
grunt.task.run('connect:test:keepalive');
});
// Travis CI
grunt.registerTask('travis', ['jasmine:test']);
// bump version number in 3 files, rebuild js to update headers, then commit, tag and push
grunt.registerTask('version', ['shell:test', 'bump-only', 'js', 'bump-commit']);
grunt.registerTask('version:minor', ['shell:test', 'bump-only:minor', 'js', 'bump-commit']);
grunt.registerTask('version:major', ['shell:test', 'bump-only:major', 'js', 'bump-commit']);
};