forked from UXAspects/UXAspects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
64 lines (54 loc) · 1.88 KB
/
Gruntfile.js
File metadata and controls
64 lines (54 loc) · 1.88 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
const path = require('path');
const configLoader = require('load-grunt-config');
module.exports = function (grunt) {
require('time-grunt')(grunt);
configLoader(grunt, {
configPath: path.join(process.cwd(), 'grunt'),
jitGrunt: {
staticMappings: {
usebanner: 'grunt-banner',
protractor: 'grunt-protractor-runner',
},
},
});
// Register Tasks
grunt.registerTask('library', ['clean:library', 'execute:build-library']);
grunt.registerTask('styles', ['execute:less', 'usebanner:styles']);
grunt.registerTask('assets', ['copy:fonts', 'copy:images', 'copy:css', 'copy:md']);
grunt.registerTask('assets:library', ['copy:fonts', 'copy:images', 'copy:md']);
grunt.registerTask('iconset', ['execute:iconset', 'webfont']);
grunt.registerTask('minify', ['cssmin:styles']);
grunt.registerTask('package:ux-aspects', ['run:package-library']);
grunt.registerTask('package:ux-aspects-docs', ['run:package-docs-library']);
// build:documentation: build and package the documentation site.
grunt.registerTask('build:documentation', [
'clean:documentation',
'execute:build-documentation',
'compress:documentation',
]);
// build:library: build and package the npm lib and the npm docs lib.
grunt.registerTask('build:library', [
'clean',
'library',
'styles',
'minify',
'assets:library',
'package:ux-aspects',
'package:ux-aspects-docs',
]);
// build: build and package for all targets.
grunt.registerTask('build', ['build:library', 'build:documentation']);
// default: build and package for all targets.
grunt.registerTask('default', ['build']);
// a quick build for local development
grunt.registerTask('build:local-registry', [
'clean',
'clean:documentation',
'execute:build-documentation',
'compress:documentation',
'library',
'styles',
'minify',
'assets:library',
]);
};