Skip to content

Commit f4f2b55

Browse files
committed
Fix typeorm commands
1 parent 4b9638c commit f4f2b55

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package-scripts.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ module.exports = {
5454
script: series(
5555
'nps banner.migrate',
5656
'nps db.config',
57-
runFast('\"./node_modules/.bin/typeorm\" migrations:run')
57+
runFast('./node_modules/typeorm/cli.js migrations:run')
5858
)
5959
},
6060
revert: {
6161
script: series(
6262
'nps banner.revert',
6363
'nps db.config',
64-
runFast('\"./node_modules/.bin/typeorm\" migrations:revert')
64+
runFast('./node_modules/typeorm/cli.js migrations:revert')
6565
)
6666
},
6767
seed: {
@@ -75,7 +75,7 @@ module.exports = {
7575
script: runFast('./src/lib/ormconfig.ts')
7676
},
7777
drop: {
78-
script: runFast('\"./node_modules/.bin/typeorm\" schema:drop')
78+
script: runFast('./node_modules/typeorm/cli.js schema:drop')
7979
}
8080
},
8181
/**

0 commit comments

Comments
 (0)