-
Notifications
You must be signed in to change notification settings - Fork 912
/
Copy pathpackage-scripts.js
178 lines (172 loc) · 5.21 KB
/
package-scripts.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/**
* Windows: Please do not use trailing comma as windows will fail with token error
*/
const { series, crossEnv, concurrent, rimraf, runInNewWindow } = require('nps-utils');
module.exports = {
scripts: {
default: 'nps start',
/**
* Starts the builded app from the dist directory
*/
start: 'node dist/app.js',
/**
* Serves the current app and watches for changes to restart it
*/
serve: series(
'nps banner.serve',
'nodemon --watch src --watch .env'
),
/**
* Setup's the development environment and the database
*/
setup: series(
'yarn install',
'nps db.migrate',
'nps db.seed'
),
/**
* Builds the app into the dist directory
*/
build: series(
'nps banner.build',
'nps lint',
'nps clean.dist',
'nps transpile',
'nps copy'
),
/**
* Database scripts
*/
db: {
migrate: series(
'nps banner.migrate',
'nps db.config',
runFast('./node_modules/typeorm/cli.js migrations:run')
),
revert: series(
'nps banner.revert',
'nps db.config',
runFast('./node_modules/typeorm/cli.js migrations:revert')
),
seed: series(
'nps banner.seed',
'nps db.config',
runFast('./src/lib/seeds/')
),
config: runFast('./src/lib/ormconfig.ts'),
drop: runFast('./node_modules/typeorm/cli.js schema:drop')
},
/**
* These run various kinds of tests. Default is unit.
*/
test: {
default: 'nps test.unit',
unit: {
default: series(
'nps banner.test',
'nps test.unit.pretest',
'nps test.unit.run'
),
pretest: 'tslint -c ./tslint.json -t stylish ./test/unit/**/*.ts',
run: 'cross-env NODE_ENV=test jest --testPathPattern=unit',
verbose: 'nps "test --verbose"',
coverage: 'nps "test --coverage"'
},
integration: {
default: series(
'nps banner.test',
'nps test.integration.pretest',
'nps test.integration.run'
),
pretest: 'tslint -c ./tslint.json -t stylish ./test/integration/**/*.ts',
verbose: 'nps "test.integration --verbose"',
run: 'cross-env NODE_ENV=test jest --testPathPattern=integration -i',
},
e2e: {
default: {
script: series(
'nps banner.test',
'nps test.e2e.pretest',
runInNewWindow(series('nps build', 'nps start')),
'nps test.e2e.run'
)
},
pretest: {
script: 'tslint -c ./tslint.json -t stylish ./test/e2e/**/*.ts'
},
verbose: {
script: 'nps "test.e2e --verbose"'
},
run: series(
`wait-on --timeout 120000 http-get://localhost:3000/api/info`,
'cross-env NODE_ENV=test jest --testPathPattern=e2e -i'
)
}
},
/**
* Runs TSLint over your project
*/
lint: `tslint -c ./tslint.json -p tsconfig.json src/**/*.ts --format stylish`,
/**
* Transpile your app into javascript
*/
transpile: `tsc`,
/**
* Clean files and folders
*/
clean: {
default: series(
`nps banner.clean`,
`nps clean.dist`
),
dist: rimraf('./dist')
},
/**
* Copies static files to the build folder
*/
copy: {
default: series(
`nps copy.swagger`,
`nps copy.public`
),
swagger: copy(
'./src/api/swagger.json',
'./dist'
),
public: copy(
'./src/public/*',
'./dist'
)
},
/**
* This creates pretty banner to the terminal
*/
banner: {
build: banner('build'),
serve: banner('serve'),
test: banner('test'),
migrate: banner('migrate'),
seed: banner('seed'),
revert: banner('revert'),
clean: banner('clean')
}
}
};
function banner(name) {
return {
hiddenFromHelp: true,
silent: true,
logLevel: 'error',
description: `Shows ${name} banners to the console`,
script: runFast(`./src/lib/banner.ts ${name}`),
};
}
function copy(source, target) {
return `copyup ${source} ${target}`;
}
function run(path) {
return `ts-node ${path}`;
}
function runFast(path) {
return run(`-F ${path}`);
}