Skip to content

Commit

Permalink
chore: npm scriptsにprepushコマンドを追加 (#DTB-2506) (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-se authored Nov 28, 2024
1 parent c72afd1 commit 29877df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"lint-fix": "biome check --write",
"type-check": "tsc --noEmit",
"build": "rollup -c",
"prepush": "mkdir -p build && cp appsscript.json build/appsscript.json",
"open:dev": "clasp_config_project=.clasp.dev.json clasp open",
"open:prod": "clasp_config_project=.clasp.prod.json clasp open",
"buildpush:prod": "pnpm run build && cp appsscript.json build/appsscript.json && clasp_config_project=.clasp.prod.json clasp push --force",
"buildpush:dev": " pnpm run build && cp appsscript.json build/appsscript.json && clasp_config_project=.clasp.dev.json clasp push --force",
"postinstall": "mkdir -p build && cp appsscript.json build/appsscript.json"
"buildpush:prod": "pnpm run build && pnpm run prepush && clasp_config_project=.clasp.prod.json clasp push --force",
"buildpush:dev": " pnpm run build && pnpm run prepush && clasp_config_project=.clasp.dev.json clasp push --force"
},
"devDependencies": {
"@babel/core": "^7.26.0",
Expand Down

0 comments on commit 29877df

Please sign in to comment.