NodeJS (NestJs)cli命令的迁移名称参数

ecbunoof  于 2023-03-17  发布在  Node.js
关注(0)|答案(1)|浏览(126)

当我运行命令进行迁移时,我在控制台中为命令提供参数时遇到问题。
这是我的“typeorm”命令。

"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",

这是“迁移:生成”

"migration:generate": "./node_modules/.bin/ts-node ./node_modules/.bin/typeorm migration:generate -d src/database/type-orm-config-migrations.ts ./src/database/migrations/$npm_config_name",

我需要将我想要创建的迁移名称发送到cli中,而不是$npm_config_name。
我试着逃跑

  • “npm运行迁移:生成名称”;
  • “npm运行迁移:生成名称”;
  • “npm运行迁移:生成名称”;

什么都不管用。

ne5o7dgx

ne5o7dgx1#

您可以点击Github链接:https://github.com/MIShuvro/dream-tour

npm run migration:generate --name=changes_entity

相关问题