-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgulp.config.json
More file actions
48 lines (43 loc) · 1.08 KB
/
gulp.config.json
File metadata and controls
48 lines (43 loc) · 1.08 KB
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
{
"paths": {
"core": {
"src": "src/back/",
"dest": "tmp-build/lib/back4app-entity/"
},
"vendor": {
"libs": {
"bcrypt": "node_modules/bcryptjs/dist/bcrypt.js",
"bluebird": "node_modules/bluebird/js/browser/bluebird.js",
"chai": "node_modules/chai/chai.js",
"uuid": "node_modules/node-uuid/uuid.js",
"util": "node_modules/util-browser/index.js",
"path": "node_modules/path-browserify/"
},
"dest": "tmp-build/lib/vendor/"
},
"build": {
"src": "build/",
"dest": "dist/browser/",
"tmp": "tmp-build/"
},
"tools": {
"rjs": "node_modules/.bin/r.js"
},
"lintCheckFiles": [
"src/**/*.js",
"!src/front/lib/**",
"tests/**/*.js",
"dist/back4app-entity.js",
"!node_modules/",
"!coverage/"
],
"mochaSrc": [
"./tests/unit/**/*.test.js",
"!./tests/unit/front"
],
"backDocsSrc": "./src/back",
"backDocsDist": "./dist/docs/back",
"guideDocsSrc": "./docs/guide",
"guideDocsDist": "./dist/docs/guide"
}
}