forked from oliversalzburg/absync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulp.config.js
24 lines (24 loc) · 981 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
module.exports = {
// The base working directory.
WorkingDirectory : "src",
// Where are the source files located? Relative to WorkingDirectory.
Sources : {
Scripts : [ "**/*.js", "*.js" ]
},
// Where should the output be placed?
// We generate two sets of outputs, one used during development
// and one used during production. Which resources are requested through HTML references
// and which resources are served to the clients, depends on the FairManager run configuration (--dev argument).
Output : {
// The development resources will be placed here. This is relative to the plugin root.
Development : "dist/development",
// The production resources will be placed here. This is relative to the plugin root.
Production : "dist/production",
// The root of the resource directory.
All : "dist",
// The names for the directories into which the outputs will be placed.
DirectoryNames : {
Scripts : ""
}
}
};