mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
yarn node => node
依存関係の記載不足の解消がかなり多いため、yarn nodeは使わない
This commit is contained in:
parent
13d924b804
commit
f595c068f9
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@
|
|||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "yarn node --experimental-json-modules ./built/index.js",
|
||||
"start:test": "NODE_ENV=test yarn node --experimental-json-modules ./built/index.js",
|
||||
"start": "node --experimental-json-modules ./built/index.js",
|
||||
"start:test": "NODE_ENV=test node --experimental-json-modules ./built/index.js",
|
||||
"migrate": "typeorm migration:run -d ormconfig.js",
|
||||
"build": "tsc -p tsconfig.json || echo done. && tsc-alias -p tsconfig.json",
|
||||
"watch": "node watch.mjs",
|
||||
|
|
Loading…
Reference in a new issue