-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGruntfile.js
137 lines (132 loc) · 3.56 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*global module:false*/
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('bower.json'),
banner: '/* <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.authors[0] %>;' +
' Licensed <%= pkg.license %> */\n',
sass: {
dist: {
files: {
'dist/<%= pkg.name %>.css': ['src/scss/main.scss','plugins/wasabi.basic.scss'],
'dist/<%= pkg.name %>.core.css': 'src/scss/main.scss',
'dist/<%= pkg.name %>.basic.css': 'plugins/wasabi.basic.scss'
}
}
},
copy: {
main: {
expand: true,
cwd: 'plugins/',
src: '*.js',
dest: 'dist/'
},
async: {
expand: true,
cwd: 'src/',
src: 'get-wasabi.js',
dest: 'dist/'
}
},
connect: {
server: {
options: {
port: 9001,
root: './'
}
}
},
concat: {
options: {
banner: '<%= banner %>',
stripBanners: true
},
dist: {
src: ['src/js/Wasabi.js',
'src/js/core/*.js',
'src/js/entry/Entry.js',
'src/js/project/Project.js',
'src/js/**/*.js'],
dest: 'dist/<%= pkg.name %>.core.js'
},
bundleScripts: {
src: ['dist/wasabi.core.js',
'dist/wasabi.basic.js'],
dest: 'dist/<%= pkg.name %>.js'
},
bundleStyles: {
src: ['dist/wasabi.core.css',
'dist/wasabi.basic.css'],
dest: 'dist/<%= pkg.name %>.css'
}
},
uglify: {
options: {
},
dist: {
src: '<%= concat.bundleScripts.dest %>',
dest: 'dist/<%= pkg.name %>.min.js'
}
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: false,
newcap: true,
noarg: true,
sub: true,
undef: true,
unused: true,
boss: true,
eqnull: true,
browser: true,
globals: {
'Wasabi': true,
'console': true
}
},
gruntfile: {
src: 'Gruntfile.js'
},
lib_test: {
src: ['src/**/*.js', 'test/**/*.js']
}
},
watch: {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
},
lib_test: {
files: '<%= jshint.lib_test.src %>',
tasks: ['jshint:lib_test']
},
scripts: {
files: ['src/**/*.js','plugins/*.js'],
tasks: ['buildJS']
},
styles: {
files: ['src/**/*.scss','plugins/*.scss'],
tasks: ['buildCSS']
}
}
});
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('buildJS', ['jshint', 'copy:main', 'concat:dist', 'concat:bundleScripts', 'uglify', 'copy:async']);
grunt.registerTask('buildCSS',['sass:dist', 'concat:bundleStyles']);
grunt.registerTask('build', ['buildJS', 'buildCSS']);
grunt.registerTask('serve', ['connect', 'build', 'watch']);
grunt.registerTask('b', ['build']);
grunt.registerTask('s', ['serve']);
grunt.registerTask('default', ['build']);
};