forked from Wildhoney/EmberDroplet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
99 lines (93 loc) · 3 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['packages/ember-droplet/*.js'],
options: {
jshintrc: '.jshintrc'
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> by <%= pkg.author %> created on <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build: {
src: ['packages/ember-droplet/*.js'],
dest: 'dist/<%= pkg.name %>.min.js'
}
},
yuidoc: {
compile: {
name: '<%= pkg.name %>',
options: {
paths: 'packages/ember-droplet/',
outdir: 'docs/'
}
}
},
jasmine: {
pivotal: {
src: ['packages/ember-droplet/*.js'],
options: {
specs: 'tests/spec.js',
helpers: [
'./example/scripts/vendor/sinon_server/sinon-server.js',
'./example/scripts/vendor/jquery/jquery.js',
'./example/scripts/vendor/handlebars/handlebars.js',
'./example/scripts/vendor/ember/ember.js'
]
}
}
},
concat: {
options: {
separator: ';',
stripBanners: true
},
dist: {
src: ['packages/ember-droplet/*.js'],
dest: 'dist/<%= pkg.name %>.js'
}
},
copy: {
main: {
files: [{
flatten: true,
src: ['packages/ember-droplet/*.js'],
dest: 'example/scripts/package',
expand: true,
filter: 'isFile'
}]
}
},
bowerInstall: {
target: {
// Point to the files that should be updated when
// you run `grunt bower-install`
src: [
'tests/index.html'
],
// Optional:
// ---------
cwd: '',
dependencies: true,
devDependencies: false,
exclude: [],
fileTypes: {},
ignorePath: '',
overrides: {}
}
}
});
grunt.loadNpmTasks('grunt-bower-install');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-yuidoc');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('build', ['yuidoc', 'concat', 'uglify', 'copy']);
grunt.registerTask('test', ['jshint', 'jasmine']);
grunt.registerTask('default', ['jshint', 'jasmine', 'yuidoc', 'concat', 'uglify', 'copy']);
};