-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.js
44 lines (44 loc) · 968 Bytes
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var src = 'app';
var build = 'dist';
module.exports = {
nodemon: {
development: {
script: './server/index.js',
ext: 'js jsx scss',
env: {'NODE_ENV': 'development'},
watch: [
'./index.js',
'./example'
],
ignore: [
'node_modules'
]
}
},
delete: {
src: ["dist/**/*"]
},
sass: {
src: './scss/**/*.{sass,scss}',
dest: './public/stylesheets',
options: {
noCache: true,
compass: false,
bundleExec: true,
sourcemap: true,
sourcemapPath: './public/css'
}
},
autoprefixer: {
browsers: [
'last 2 versions',
'safari 5',
'ie 8',
'ie 9',
'opera 12.1',
'ios 6',
'android 4'
],
cascade: true
}
};