-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrunt.js
157 lines (143 loc) · 3.13 KB
/
grunt.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*global exports:true, module:true, require:true */
// Modules.
var nconf = require('nconf'),
config = require('./config');
// Grunt.
module.exports = function (grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
pkg: '<json:package.json>',
// Server used for tests.
server: {
port: nconf.get('GRUNT_PORT'),
base: nconf.get('GRUNT_BASE_URL')
},
// Executes jasmine tests with phantomjs.
exec: {
jasmine: {
command: 'phantomjs public/js/lib/jasmine/jasmine-runner.js http://' + nconf.get('GRUNT_HOST') + ':' + nconf.get('GRUNT_PORT') + '/js/test/',
stdout: true
}
},
// Watch source and spec files.
// When they change execute the exec task.
watch: {
src: {
files: [
'public/js/src/**/*.js',
'public/js/test/**/*.js',
'config/*.js',
'lib/*.js',
'*.js'
],
tasks: ['lint']
},
test: {
files: [
'public/js/src/**/*.js',
'public/js/test/**/*.js'
],
tasks: ['exec']
}
},
// Linted Directories.
lint: {
all: [
'public/js/src/**/*.js',
'public/js/test/**/*.js',
'config/*.js',
'*.js'
]
},
// Linting options.
jshint: {
options: {
nomen: false,
curly: true,
camelcase: true,
eqeqeq: true,
newcap: true,
undef: true,
trailing: true,
strict: true,
latedef: true,
indent: true,
quotmark: true
},
global: {
define: true,
window: true,
document: true
}
},
// Compile less files into css.
less: {
development: {
files: {
'public/css/app.css': 'public/less/app.less'
}
},
production: {
files: {
'target/gallery-ui/css/app.css': 'public/less/app.less'
},
options: {
compress: true
}
}
},
// Optimize and compress JavaScript source files.
requirejs: {
compile: {
options: {
baseUrl: './public/js/src',
mainConfigFile: './public/js/src/main.js',
out: './target/gallery-ui/js/main.js',
name: 'main'
}
}
},
// Compile index.html into 'target' build directory.
html: {
production: {
src: 'views/*.html',
dest: 'target/gallery-ui/FILE.html',
options: {
title: 'Angular with Require || Gallery',
url: 'docs',
setAccount: 'NA',
setSiteId: 'NA',
layout: 'views/layout/layout.html',
dev: false,
docs: true,
app: false,
website: false,
paths: {
partials: 'views/partials/*.html'
}
}
}
},
// Copy additional artifacts into 'target' build directory.
copy: {
dist: {
files: {
'target/gallery-ui/img/': 'public/img/**',
//'target/gallery-ui/i18n/': 'public/i18n/**',
'target/gallery-ui/template/': 'public/template/**',
'target/gallery-ui/font/': 'public/less/lib/font-awesome/font/**',
'target/gallery-ui/data/': 'public/data/**'
}
}
}
});
// Load plugins/tasks.
grunt.loadNpmTasks('grunt-contrib');
grunt.loadNpmTasks('grunt-exec');
grunt.loadTasks('tasks');
// Register tasks.
grunt.registerTask('test', 'server exec');
grunt.registerTask('test.watch', 'server exec watch:test');
grunt.registerTask('default', 'lint less requirejs html copy');
};