This repository was archived by the owner on Jan 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathGruntfile.js
86 lines (81 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks("grunt-tslint");
grunt.loadNpmTasks('grunt-ts');
// Project configuration.
grunt.initConfig({
connect: {
server: {
options: {
port: 8000,
base: '.',
keepalive: true
}
}
},
pkg: grunt.file.readJSON('package.json'),
ts: {
default: {
src: ["src/**/*.ts", "!node_modules/**"],
options: {
module: "amd",
moduleResolution: "node",
declaration: true,
compiler: './node_modules/typescript/bin/tsc'
},
tsconfig: 'tsconfig.json',
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %> */\n',
sourceMap: true
},
build: {
src: ['src/ng-intro.component.js'],
dest: 'build/angular-intro.min.js'
},
buildNotMinified: {
compress: false,
options: {
beautify: true,
mangle : false,
compress : false
},
files: {
'build/angular-intro.js': ['src/ng-intro.component.js']
}
}
},
tslint: {
options: {
configuration: "tslint.json",
force: false,
fix: false
},
files: {
src: [
"src/ng-intro.component.ts"
]
}
},
watch: {
scripts: {
files: 'src/*.ts',
tasks: ['ts', 'tslint', 'uglify'],
options: {
interrupt: true
}
},
gruntfile: {
files: 'Gruntfile.js'
}
}
});
// Load all grunt tasks
require('load-grunt-tasks')(grunt);
// Default task(s).
grunt.registerTask('default', ['ts', 'tslint', 'uglify']);
// Test
grunt.registerTask('test', ['tslint']);
};