@@ -6,190 +6,131 @@ const { series, crossEnv, concurrent, rimraf, runInNewWindow } = require('nps-ut
6
6
7
7
module . exports = {
8
8
scripts : {
9
- default : {
10
- script : 'nps start'
11
- } ,
9
+ default : 'nps start' ,
12
10
/**
13
11
* Starts the builded app from the dist directory
14
12
*/
15
- start : {
16
- script : 'node dist/app.js'
17
- } ,
13
+ start : 'node dist/app.js' ,
18
14
/**
19
15
* Serves the current app and watches for changes to restart it
20
16
*/
21
- serve : {
22
- script : series (
23
- 'nps banner.serve' ,
24
- 'nodemon --watch src --watch .env'
25
- )
26
- } ,
17
+ serve : series (
18
+ 'nps banner.serve' ,
19
+ 'nodemon --watch src --watch .env'
20
+ ) ,
27
21
/**
28
22
* Setup's the development environment and the database
29
23
*/
30
- setup : {
31
- script : series (
32
- 'yarn install' ,
33
- 'nps db.migrate' ,
34
- 'nps db.seed'
35
- )
36
- } ,
24
+ setup : series (
25
+ 'yarn install' ,
26
+ 'nps db.migrate' ,
27
+ 'nps db.seed'
28
+ ) ,
37
29
/**
38
30
* Builds the app into the dist directory
39
31
*/
40
- build : {
41
- script : series (
42
- 'nps banner.build' ,
43
- 'nps lint' ,
44
- 'nps clean.dist' ,
45
- 'nps transpile' ,
46
- 'nps copy'
47
- )
48
- } ,
32
+ build : series (
33
+ 'nps banner.build' ,
34
+ 'nps lint' ,
35
+ 'nps clean.dist' ,
36
+ 'nps transpile' ,
37
+ 'nps copy'
38
+ ) ,
49
39
/**
50
40
* Database scripts
51
41
*/
52
42
db : {
53
- migrate : {
54
- script : series (
55
- 'nps banner.migrate' ,
56
- 'nps db.config' ,
57
- runFast ( './node_modules/typeorm/cli.js migrations:run' )
58
- )
59
- } ,
60
- revert : {
61
- script : series (
62
- 'nps banner.revert' ,
63
- 'nps db.config' ,
64
- runFast ( './node_modules/typeorm/cli.js migrations:revert' )
65
- )
66
- } ,
67
- seed : {
68
- script : series (
69
- 'nps banner.seed' ,
70
- 'nps db.config' ,
71
- runFast ( './src/lib/seeds/' )
72
- )
73
- } ,
74
- config : {
75
- script : runFast ( './src/lib/ormconfig.ts' )
76
- } ,
77
- drop : {
78
- script : runFast ( './node_modules/typeorm/cli.js schema:drop' )
79
- }
43
+ migrate : series (
44
+ 'nps banner.migrate' ,
45
+ 'nps db.config' ,
46
+ runFast ( './node_modules/typeorm/cli.js migrations:run' )
47
+ ) ,
48
+ revert : series (
49
+ 'nps banner.revert' ,
50
+ 'nps db.config' ,
51
+ runFast ( './node_modules/typeorm/cli.js migrations:revert' )
52
+ ) ,
53
+ seed : series (
54
+ 'nps banner.seed' ,
55
+ 'nps db.config' ,
56
+ runFast ( './src/lib/seeds/' )
57
+ ) ,
58
+ config : runFast ( './src/lib/ormconfig.ts' ) ,
59
+ drop : runFast ( './node_modules/typeorm/cli.js schema:drop' )
80
60
} ,
81
61
/**
82
62
* These run various kinds of tests. Default is unit.
83
63
*/
84
64
test : {
85
65
default : 'nps test.unit' ,
86
66
unit : {
87
- default : {
88
- script : series (
89
- 'nps banner.test' ,
90
- 'nps test.unit.pretest' ,
91
- 'nps test.unit.run'
92
- )
93
- } ,
94
- pretest : {
95
- script : 'tslint -c ./tslint.json -t stylish ./test/unit/**/*.ts'
96
- } ,
97
- run : {
98
- script : 'cross-env NODE_ENV=test jest --testPathPattern=unit'
99
- } ,
100
- verbose : {
101
- script : 'nps "test --verbose"'
102
- } ,
103
- coverage : {
104
- script : 'nps "test --coverage"'
105
- }
67
+ default : series (
68
+ 'nps banner.test' ,
69
+ 'nps test.unit.pretest' ,
70
+ 'nps test.unit.run'
71
+ ) ,
72
+ pretest : 'tslint -c ./tslint.json -t stylish ./test/unit/**/*.ts' ,
73
+ run : 'cross-env NODE_ENV=test jest --testPathPattern=unit' ,
74
+ verbose : 'nps "test --verbose"' ,
75
+ coverage : 'nps "test --coverage"'
106
76
} ,
107
77
integration : {
108
- default : {
109
- script : series (
110
- 'nps banner.test' ,
111
- 'nps test.integration.pretest' ,
112
- 'nps test.integration.run'
113
- )
114
- } ,
115
- pretest : {
116
- script : 'tslint -c ./tslint.json -t stylish ./test/integration/**/*.ts'
117
- } ,
118
- verbose : {
119
- script : 'nps "test.integration --verbose"'
120
- } ,
121
- run : {
122
- // -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
123
- script : 'cross-env NODE_ENV=test jest --testPathPattern=integration -i'
124
- } ,
78
+ default : series (
79
+ 'nps banner.test' ,
80
+ 'nps test.integration.pretest' ,
81
+ 'nps test.integration.run'
82
+ ) ,
83
+ pretest : 'tslint -c ./tslint.json -t stylish ./test/integration/**/*.ts' ,
84
+ verbose : 'nps "test.integration --verbose"' ,
85
+ // -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
86
+ run : 'cross-env NODE_ENV=test jest --testPathPattern=integration -i' ,
125
87
} ,
126
88
e2e : {
127
- default : {
128
- script : series (
129
- 'nps banner.test' ,
130
- 'nps test.e2e.pretest' ,
131
- 'nps test.e2e.run'
132
- )
133
- } ,
134
- pretest : {
135
- script : 'tslint -c ./tslint.json -t stylish ./test/e2e/**/*.ts'
136
- } ,
137
- verbose : {
138
- script : 'nps "test.e2e --verbose"'
139
- } , run : {
140
- // -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
141
- script : 'cross-env NODE_ENV=test jest --testPathPattern=e2e -i'
142
- } ,
89
+ default : series (
90
+ 'nps banner.test' ,
91
+ 'nps test.e2e.pretest' ,
92
+ 'nps test.e2e.run'
93
+ ) ,
94
+ pretest : 'tslint -c ./tslint.json -t stylish ./test/e2e/**/*.ts' ,
95
+ verbose : 'nps "test.e2e --verbose"' ,
96
+ // -i. Run all tests serially in the current process, rather than creating a worker pool of child processes that run tests. This can be useful for debugging.
97
+ run : 'cross-env NODE_ENV=test jest --testPathPattern=e2e -i' ,
143
98
}
144
99
} ,
145
100
/**
146
101
* Runs TSLint over your project
147
102
*/
148
- lint : {
149
- script : `tslint -c ./tslint.json -p tsconfig.json src/**/*.ts --format stylish`
150
- } ,
103
+ lint : `tslint -c ./tslint.json -p tsconfig.json src/**/*.ts --format stylish` ,
151
104
/**
152
105
* Transpile your app into javascript
153
106
*/
154
- transpile : {
155
- script : `tsc`
156
- } ,
107
+ transpile : `tsc` ,
157
108
/**
158
109
* Clean files and folders
159
110
*/
160
111
clean : {
161
- default : {
162
- script : series (
163
- `nps banner.clean` ,
164
- `nps clean.dist`
165
- )
166
- } ,
167
- dist : {
168
- script : rimraf ( './dist' )
169
- }
112
+ default : series (
113
+ `nps banner.clean` ,
114
+ `nps clean.dist`
115
+ ) ,
116
+ dist : rimraf ( './dist' )
170
117
} ,
171
118
/**
172
119
* Copies static files to the build folder
173
120
*/
174
121
copy : {
175
- default : {
176
- script : series (
177
- `nps copy.swagger` ,
178
- `nps copy.public`
179
- )
180
- } ,
181
- swagger : {
182
- script : copy (
183
- './src/api/swagger.json' ,
184
- './dist'
185
- )
186
- } ,
187
- public : {
188
- script : copy (
189
- './src/public/*' ,
190
- './dist'
191
- )
192
- }
122
+ default : series (
123
+ `nps copy.swagger` ,
124
+ `nps copy.public`
125
+ ) ,
126
+ swagger : copy (
127
+ './src/api/swagger.json' ,
128
+ './dist'
129
+ ) ,
130
+ public : copy (
131
+ './src/public/*' ,
132
+ './dist'
133
+ )
193
134
} ,
194
135
/**
195
136
* This creates pretty banner to the terminal
0 commit comments