This repository was archived by the owner on Nov 1, 2023. It is now read-only.
forked from vigetlabs/blendid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-defaults.js
94 lines (84 loc) · 1.8 KB
/
task-defaults.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
const os = require('os')
const path = require('path')
const pkg = require(path.resolve(process.env.PWD, 'package.json'))
module.exports = {
javascripts: {
extensions: ['js', 'jsx'],
hot: {
reload: true,
noInfo: false,
quiet: true,
react: false
},
devtool: 'eval-cheap-module-source-map',
babelLoader: {
// "test" is derived from TASK_CONFIG.javascripts.extensions
// "options" is derived from TASK_CONFIG.javascripts.babel
loader: 'babel-loader',
exclude: /node_modules/
},
babel: {
presets: [["es2015", { "modules": false }], 'stage-1']
},
development: {},
production: {
devtool: false,
uglifyJsPlugin: {},
definePlugin: {
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}
}
},
stylesheets: {
sass: {
includePaths: [
"./node_modules"
]
},
extensions: ["sass", "scss", "css"]
},
html: {
dataFile: "data/global.json",
nunjucksRender: {
envOptions: {
watch: false
}
},
htmlmin: {
collapseWhitespace: true
},
excludeFolders: ["layouts", "shared", "macros", "data"],
extensions: ["html", "njk", "json"]
},
images: {
extensions: ["jpg", "png", "svg", "gif"]
},
fonts: {
extensions: ["woff2", "woff", "eot", "ttf", "svg"]
},
ghPages: {
branch: "gh-pages",
cacheDir: path.join(os.tmpdir(), pkg.name || "blendid")
},
svgSprite: {
svgstore: {}
},
production: {
rev: true
},
additionalTasks: {
initialize(gulp, PATH_CONFIG, TASK_CONFIG) {
// gulp.task('myTask', function() { })
},
development: {
prebuild: null,
postbuild: null
},
production: {
prebuild: null,
postbuild: null
}
}
}