Skip to content

Commit 3ba9350

Browse files
author
hirsch88
committed
Add pkg scripts
1 parent 098abcb commit 3ba9350

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

package-scripts.js

+10-13
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,19 @@ module.exports = {
4747
default: {
4848
script: series(
4949
'nps banner.migrate',
50-
'nps lint',
51-
'nps clean.dist',
52-
'nps transpile',
53-
'nps copy',
54-
'\"./node_modules/.bin/typeorm\" migrations:run',
50+
'nps migrate.config',
51+
runFast('./node_modules/.bin/typeorm migrations:run'),
5552
)
5653
},
57-
rollback: {
54+
revert: {
5855
script: series(
59-
'nps banner.rollback',
60-
'nps lint',
61-
'nps clean.dist',
62-
'nps transpile',
63-
'nps copy',
64-
'\"./node_modules/.bin/typeorm\" migrations:revert',
56+
'nps banner.revert',
57+
'nps migrate.config',
58+
runFast('./node_modules/.bin/typeorm migrations:revert'),
6559
)
60+
},
61+
config: {
62+
script: runFast('./lib/ormconfig.ts'),
6663
}
6764
},
6865
/**
@@ -169,7 +166,7 @@ module.exports = {
169166
serve: banner('serve'),
170167
test: banner('test'),
171168
migrate: banner('migrate'),
172-
rollback: banner('rollback'),
169+
revert: banner('revert'),
173170
clean: banner('clean')
174171
}
175172
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"express-status-monitor": "^1.0.1",
6060
"figlet": "^1.2.0",
6161
"helmet": "^3.9.0",
62+
"jsonfile": "^4.0.0",
6263
"lodash": "^4.17.4",
6364
"microframework": "^0.6.4",
6465
"morgan": "^1.9.0",

0 commit comments

Comments
 (0)