-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpaths.js
61 lines (60 loc) · 1.51 KB
/
paths.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
var paths = {
client: {
dir: './client/src/',
dist: './client/dist/',
scripts: {
dir: './client/src/scripts/',
entry: './client/src/scripts/main.jsx',
all: './client/src/scripts/**/*.{js,jsx}',
},
stylesheets: {
dir: './client/src/stylesheets/',
entry: './client/src/stylesheets/main.sass',
all: './client/src/stylesheets/**/*.sass',
plugins: [
'./node_modules/codemirror/lib/codemirror.css',
'./node_modules/codemirror/theme/neo.css',
'./node_modules/codemirror/addon/lint/lint.css',
],
},
static: {
all: ['./node_modules/operative/dist/operative.min.js'],
},
temp: './client/temp/',
},
demo: {
dir: './demo/src/',
dist: './demo/dist/',
scripts: {
dir: './demo/src/scripts/',
entry: './demo/src/scripts/main.js',
all: './demo/src/scripts/**/*.js',
},
stylesheets: {
dir: './demo/src/stylesheets/',
entry: './demo/src/stylesheets/main.sass',
all: './demo/src/stylesheets/**/*.sass',
},
static: {
dir: './demo/src/static/',
all: ['./demo/src/static/**/*', './node_modules/operative/dist/operative.min.js'],
},
},
server: {
dir: './server/src/',
dist: './server/dist/',
},
shared: {
dir: './shared/src/',
dist: './shared/dist/',
scripts: {
dir: './shared/src/scripts/',
all: './shared/src/scripts/**/*.js',
},
},
tests: {
dir: './test/',
main: './test/test.js',
},
};
module.exports = paths;