1
+ /**
2
+ * Windows: Please do not use trailing comma as windows will fail with token error
3
+ */
4
+
1
5
const { series, crossEnv, concurrent, rimraf, runInNewWindow } = require ( 'nps-utils' ) ;
2
6
3
7
module . exports = {
@@ -17,8 +21,8 @@ module.exports = {
17
21
serve : {
18
22
script : series (
19
23
'nps banner.serve' ,
20
- '\"./node_modules/.bin/ nodemon\" --watch src --watch \" .env\"' ,
21
- ) ,
24
+ 'nodemon --watch src --watch .env'
25
+ )
22
26
} ,
23
27
/**
24
28
* Setup's the development environment and the database
@@ -28,7 +32,7 @@ module.exports = {
28
32
'yarn install' ,
29
33
'nps db.migrate' ,
30
34
'nps db.seed'
31
- ) ,
35
+ )
32
36
} ,
33
37
/**
34
38
* Builds the app into the dist directory
@@ -39,8 +43,8 @@ module.exports = {
39
43
'nps lint' ,
40
44
'nps clean.dist' ,
41
45
'nps transpile' ,
42
- 'nps copy' ,
43
- ) ,
46
+ 'nps copy'
47
+ )
44
48
} ,
45
49
/**
46
50
* Database scripts
@@ -50,29 +54,29 @@ module.exports = {
50
54
script : series (
51
55
'nps banner.migrate' ,
52
56
'nps db.config' ,
53
- runFast ( '\"./node_modules/.bin/typeorm\" migrations:run' ) ,
54
- ) ,
57
+ runFast ( '\"./node_modules/.bin/typeorm\" migrations:run' )
58
+ )
55
59
} ,
56
60
revert : {
57
61
script : series (
58
62
'nps banner.revert' ,
59
63
'nps db.config' ,
60
- runFast ( '\"./node_modules/.bin/typeorm\" migrations:revert' ) ,
61
- ) ,
64
+ runFast ( '\"./node_modules/.bin/typeorm\" migrations:revert' )
65
+ )
62
66
} ,
63
67
seed : {
64
68
script : series (
65
69
'nps banner.seed' ,
66
70
'nps db.config' ,
67
- runFast ( '\" ./src/lib/seeds/\"' ) ,
68
- ) ,
71
+ runFast ( './src/lib/seeds/' )
72
+ )
69
73
} ,
70
74
config : {
71
- script : runFast ( '\" ./src/lib/ormconfig.ts\"' ) ,
75
+ script : runFast ( './src/lib/ormconfig.ts' )
72
76
} ,
73
77
drop : {
74
- script : runFast ( '\"./node_modules/.bin/typeorm\" schema:drop' ) ,
75
- } ,
78
+ script : runFast ( '\"./node_modules/.bin/typeorm\" schema:drop' )
79
+ }
76
80
} ,
77
81
/**
78
82
* These run various kinds of tests. Default is unit.
@@ -84,54 +88,54 @@ module.exports = {
84
88
script : series (
85
89
'nps banner.test' ,
86
90
'nps test.unit.pretest' ,
87
- 'nps test.unit.run' ,
88
- ) ,
91
+ 'nps test.unit.run'
92
+ )
89
93
} ,
90
94
pretest : {
91
- script : '\"./node_modules/.bin/ tslint\" -c \" ./tslint.json\" -t stylish \" ./test/unit/**/*.ts\" '
95
+ script : 'tslint -c ./tslint.json -t stylish ./test/unit/**/*.ts'
92
96
} ,
93
97
run : {
94
- script : '\"./node_modules/.bin/ cross-env\" NODE_ENV=test \"./node_modules/.bin/ jest\" --testPathPattern=unit'
98
+ script : 'cross-env NODE_ENV=test jest --testPathPattern=unit'
95
99
} ,
96
100
verbose : {
97
101
script : 'nps "test --verbose"'
98
102
} ,
99
103
coverage : {
100
104
script : 'nps "test --coverage"'
101
- } ,
105
+ }
102
106
} ,
103
107
e2e : {
104
108
default : {
105
109
script : series (
106
110
'nps banner.test' ,
107
111
'nps test.e2e.pretest' ,
108
112
runInNewWindow ( series ( 'nps build' , 'nps start' ) ) ,
109
- 'nps test.e2e.run' ,
110
- ) ,
113
+ 'nps test.e2e.run'
114
+ )
111
115
} ,
112
116
pretest : {
113
- script : '\"./node_modules/.bin/ tslint\" -c \" ./tslint.json\" -t stylish \" ./test/e2e/**/*.ts\" '
117
+ script : 'tslint -c ./tslint.json -t stylish ./test/e2e/**/*.ts'
114
118
} ,
115
119
verbose : {
116
120
script : 'nps "test.e2e --verbose"'
117
121
} ,
118
122
run : series (
119
123
`wait-on --timeout 120000 http-get://localhost:3000/api/info` ,
120
- '\"./node_modules/.bin/ cross-env\" NODE_ENV=test \"./node_modules/.bin/ jest\" --testPathPattern=e2e -i' ,
121
- ) ,
124
+ 'cross-env NODE_ENV=test jest --testPathPattern=e2e -i'
125
+ )
122
126
}
123
127
} ,
124
128
/**
125
129
* Runs TSLint over your project
126
130
*/
127
131
lint : {
128
- script : `\"./node_modules/.bin/ tslint\" -c \" ./tslint.json\" -p tsconfig.json \" src/**/*.ts\" --format stylish`
132
+ script : `tslint -c ./tslint.json -p tsconfig.json src/**/*.ts --format stylish`
129
133
} ,
130
134
/**
131
135
* Transpile your app into javascript
132
136
*/
133
137
transpile : {
134
- script : `\"./node_modules/.bin/ tsc\" `
138
+ script : `tsc`
135
139
} ,
136
140
/**
137
141
* Clean files and folders
@@ -140,11 +144,11 @@ module.exports = {
140
144
default : {
141
145
script : series (
142
146
`nps banner.clean` ,
143
- `nps clean.dist` ,
144
- ) ,
147
+ `nps clean.dist`
148
+ )
145
149
} ,
146
150
dist : {
147
- script : `\"./node_modules/.bin/trash\" \"./ dist\"`
151
+ script : rimraf ( './ dist' )
148
152
}
149
153
} ,
150
154
/**
@@ -154,20 +158,20 @@ module.exports = {
154
158
default : {
155
159
script : series (
156
160
`nps copy.swagger` ,
157
- `nps copy.public` ,
158
- ) ,
161
+ `nps copy.public`
162
+ )
159
163
} ,
160
164
swagger : {
161
165
script : copy (
162
- '\" ./src/api/swagger.json\" ' ,
163
- '\" ./dist\"' ,
164
- ) ,
166
+ './src/api/swagger.json' ,
167
+ './dist'
168
+ )
165
169
} ,
166
170
public : {
167
171
script : copy (
168
- '\" ./src/public/*\" ' ,
169
- '\" ./dist\"' ,
170
- ) ,
172
+ './src/public/*' ,
173
+ './dist'
174
+ )
171
175
}
172
176
} ,
173
177
/**
@@ -180,9 +184,9 @@ module.exports = {
180
184
migrate : banner ( 'migrate' ) ,
181
185
seed : banner ( 'seed' ) ,
182
186
revert : banner ( 'revert' ) ,
183
- clean : banner ( 'clean' ) ,
184
- } ,
185
- } ,
187
+ clean : banner ( 'clean' )
188
+ }
189
+ }
186
190
} ;
187
191
188
192
function banner ( name ) {
@@ -191,16 +195,16 @@ function banner(name) {
191
195
silent : true ,
192
196
logLevel : 'error' ,
193
197
description : `Shows ${ name } banners to the console` ,
194
- script : runFast ( `\" ./src/lib/banner.ts\" ${ name } ` ) ,
198
+ script : runFast ( `./src/lib/banner.ts ${ name } ` ) ,
195
199
} ;
196
200
}
197
201
198
202
function copy ( source , target ) {
199
- return `\"./node_modules/.bin/ copyup\" ${ source } ${ target } ` ;
203
+ return `copyup ${ source } ${ target } ` ;
200
204
}
201
205
202
206
function run ( path ) {
203
- return `\"./node_modules/.bin/ ts-node\" ${ path } ` ;
207
+ return `ts-node ${ path } ` ;
204
208
}
205
209
206
210
function runFast ( path ) {
0 commit comments