Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing package scripts #302

Merged
merged 1 commit into from
May 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
"check-circular": "turbo run check-circular --cache-dir=.turbo",
"cicheck": "turbo run cicheck --cache-dir=.turbo && pnpm run coverage:total",
"cicheck:dev": "turbo run cicheck --cache-dir=.turbo --output-logs=new-only --concurrency=100% --continue",
"sst:dev": "sst dev",
"sst:build": "sst build",
"sst:deploy:dev": "sst deploy",
"sst:dev": "sst dev --app summerfi-stack",
"sst:build": "sst build --app summerfi-stack",
"sst:deploy:dev": "sst deploy --app summerfi-stack",
"sst:deploy:staging": "sst deploy --stage staging --app summerfi-stack",
"sst:deploy:prod": "sst deploy --stage production --app summerfi-stack",
"sst:dev:sdk": "sst dev --app sdk",
"sst:build:sdk": "sst build --app sdk",
"sst:deploy:sdk:staging": "sst deploy --stage staging --app sdk",
"sst:deploy:sdk:prod": "sst deploy --stage production --app sdk",
"remove": "sst remove",
Expand Down
Loading