We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b9638c commit f4f2b55Copy full SHA for f4f2b55
package-scripts.js
@@ -54,14 +54,14 @@ module.exports = {
54
script: series(
55
'nps banner.migrate',
56
'nps db.config',
57
- runFast('\"./node_modules/.bin/typeorm\" migrations:run')
+ runFast('./node_modules/typeorm/cli.js migrations:run')
58
)
59
},
60
revert: {
61
62
'nps banner.revert',
63
64
- runFast('\"./node_modules/.bin/typeorm\" migrations:revert')
+ runFast('./node_modules/typeorm/cli.js migrations:revert')
65
66
67
seed: {
@@ -75,7 +75,7 @@ module.exports = {
75
script: runFast('./src/lib/ormconfig.ts')
76
77
drop: {
78
- script: runFast('\"./node_modules/.bin/typeorm\" schema:drop')
+ script: runFast('./node_modules/typeorm/cli.js schema:drop')
79
}
80
81
/**
0 commit comments