This repository has been archived by the owner on Jun 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
68 lines (58 loc) · 2.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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('webpack_import_cert', ['run:webpack_import_cert']);
grunt.registerTask('lint', ['tslint:library', 'tslint:documentation', 'stylelint', 'tslint:e2e']);
grunt.registerTask('library', ['clean:library', 'execute:ngpackagr', 'execute:typescriptTransform']);
grunt.registerTask('styles', ['clean: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']);
// e2e: run the protractor tests
grunt.registerTask('e2e', ['tslint:e2e', 'clean:e2e', 'execute:protractor']);
grunt.registerTask('package:ux-aspects', [
'run:npm_pack_ux-aspects',
'copy:npm_ux-aspects_tgz',
'execute:package_artifactory_ux-aspects'
]);
grunt.registerTask('package:ux-aspects-docs', [
'run:npm_pack_ux-aspects-docs',
'copy:npm_ux-aspects-docs_tgz',
'execute:package_artifactory_ux-aspects-docs'
]);
// build:documentation: build and package the documentation site.
grunt.registerTask('build:documentation', [
'tslint:documentation',
'clean:documentation',
'execute:webpack_documentation',
'compress:documentation'
]);
// build:library: build and package the npm lib and the npm docs lib.
grunt.registerTask('build:library', [
'clean',
'lint',
'library',
'iconset',
'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']);
};