rajt 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rajt",
|
|
3
3
|
"description": "A serverless bundler layer, fully typed for AWS Lambda (Node.js and LLRT) and Cloudflare Workers.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"build:watch": "chokidar \"../../{actions,configs,models,utils}/**/*.ts\" -c \"bun run --silent build\" --initial",
|
|
20
20
|
"export": "esbuild --bundle --minify --outfile=../../dist/index.js --platform=node --target=node20 --format=esm --tree-shaking=true --legal-comments=none src/prod.ts",
|
|
21
21
|
"package": "bun run --silent build && bun run --silent sam:package",
|
|
22
|
-
"deploy": "bun run --silent build && bun run --silent sam:package &&
|
|
23
|
-
"update": "bun run --silent build && bun run --silent zip &&
|
|
22
|
+
"deploy": "bun run --silent build && bun run --silent sam:package && bun run --silent sam:deploy",
|
|
23
|
+
"update": "bun run --silent build && bun run --silent zip && bun run --silent sam:update",
|
|
24
24
|
"sam:local": "sam local start-api --warm-containers LAZY --debug --template-file ../../template-dev.yaml",
|
|
25
25
|
"sam:package": "sam package --template-file ../../template-prod.yaml --output-template-file ../../packaged.yaml",
|
|
26
26
|
"sam:deploy": "sam deploy --template-file ../../packaged.yaml --stack-name rajt-llrt --capabilities CAPABILITY_IAM",
|