Skip to content

Commit b37ae9b

Browse files
committed
コマンドを調整
1 parent aea1445 commit b37ae9b

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@
1212
],
1313
"scripts": {
1414
"setup": "run-p setup:*",
15-
"setup:client": "yarn --cwd client 'install'",
16-
"setup:server": "yarn --cwd server 'install'",
17-
"setup:infra": "yarn --cwd infra 'install'",
15+
"setup:client": "yarn workspace client install",
16+
"setup:server": "yarn workspace server install",
17+
"setup:infra": "yarn workspace infra install",
1818
"dev": "run-p dev:*",
19-
"dev:client": "yarn --cwd client 'dev'",
20-
"dev:server": "yarn --cwd server 'dev'",
21-
"dev:infra": "yarn --cwd infra 'watch'",
19+
"dev:client": "yarn workspace client dev",
20+
"dev:server": "yarn workspace server dev",
21+
"dev:infra": "yarn workspace infra watch",
2222
"build": "run-p build:*",
23-
"build:client": "yarn --cwd client 'build'",
24-
"build:server": "yarn --cwd server 'build'",
25-
"bootstrap": "yarn --cwd infra 'bootstrap'",
26-
"deploy": "yarn --cwd infra 'deploy'",
27-
"destroy": "yarn --cwd infra 'destroy'",
23+
"build:client": "yarn workspace client build",
24+
"build:server": "yarn workspace server build",
25+
"bootstrap": "yarn workspace infra bootstrap",
26+
"deploy": "yarn workspace infra deploy",
27+
"destroy": "yarn workspace infra destroy",
2828
"test": "run-p test:*",
29-
"test:client": "yarn --cwd client 'test'",
30-
"test:server": "yarn --cwd server 'test'",
31-
"test:infra": "yarn --cwd infra 'test'",
29+
"test:client": "yarn workspace client test",
30+
"test:server": "yarn workspace server test",
31+
"test:infra": "yarn workspace infra test",
3232
"lint": "eslint \"**/*\"",
3333
"lint:fix": "eslint --fix \"**/*\""
3434
},

0 commit comments

Comments
 (0)