-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp.config.js
30 lines (28 loc) · 953 Bytes
/
gulp.config.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
module.exports = function() {
var baseClient = './src/client/',
temp = './.tmp/',
clientApp = baseClient + 'app/',
dist = './dist/';
var config = {
clientApp: clientApp,
sass: baseClient + 'styles/main.scss',
styles: baseClient + 'styles/**/*.scss',
temp: temp,
dist: dist,
bowerFilePath: './bower.json',
htmlTemplates: [clientApp + '**/*.html', '!' + clientApp + '**/*.js.html',
'!' + clientApp + '**/index.html', '!' + clientApp + 'layout/*.html'],
templateCache: {
file: 'templates.js',
options: {
module: 'ngD3Example.widgets',
root: 'app/',
standAlone: false
}
},
commonFileName: 'ngD3Example-common',
bowerRepoDir: 'bower-ngD3Example',
bowerRepo: 'https://github.com/pjain11/bower-ngD3Example'
};
return config;
}