diff options
| author | Brandon Keiji <[email protected]> | 2025-04-26 00:30:50 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-25 17:30:50 -0700 |
| commit | d051c0fd0fdac2078e35144f27bfcea415bd503e (patch) | |
| tree | d32f95fe5147122a4343a7c579cc92ecba5ef47a /package.json | |
| parent | a5ba681f8df6efc0669370249b860546b690c09e (diff) | |
feat: prototype publish sandbox script with npm package (#182)
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package.json b/package.json index 99379921..10ba1cca 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,9 @@ "typecheck": "tsc --noEmit --jsx react", "format": "prettier --write .", "preflight": "npm run format --workspaces --if-present && npm run lint --workspaces --if-present && npm run test --workspaces --if-present", - "auth": "npx google-artifactregistry-auth", + "auth:npm": "npx google-artifactregistry-auth", + "auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev", + "auth": "npm run auth:npm && npm run auth:docker", "prerelease:dev": "npm run prerelease:version --workspaces && npm run prerelease:deps --workspaces" }, "devDependencies": { |
