sst 4.3.9 → 4.5.0

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.
Files changed (2) hide show
  1. package/README.md +3 -9
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -14,8 +14,6 @@
14
14
 
15
15
  Build full-stack apps on your own infrastructure.
16
16
 
17
- SST v3 uses a new engine for deploying SST apps. It uses Pulumi and Terraform, as opposed to CDK and CloudFormation. [Read the full announcement here](https://sst.dev/blog/sst-v3).
18
-
19
17
  ## Installation
20
18
 
21
19
  If you are using SST as a part of your Node project, we recommend installing it locally.
@@ -70,10 +68,7 @@ Here's how you can contribute:
70
68
 
71
69
  ## Running Locally
72
70
 
73
- 1. Clone the repo
74
- 2. `bun install`
75
- 3. `go mod tidy`
76
- 4. `cd platform && bun run build`
71
+ Run `bun run setup`. You need [Go](https://go.dev/) and [Bun](https://bun.sh/) installed.
77
72
 
78
73
  Now you can run the CLI locally on any of the `examples/` apps.
79
74
 
@@ -82,10 +77,9 @@ cd examples/aws-api
82
77
  go run ../../cmd/sst <command>
83
78
  ```
84
79
 
85
- If you want to build the CLI, you can run `go build ./cmd/sst` from the root. This will create a
86
- `sst` binary that you can use.
80
+ If you want to build the CLI binary, run `bun run build:cli`. This will create a `sst` binary that you can use.
87
81
 
88
- For building the docs, you need to run `bun generate` and `bun dev` inside the `www` directory.
82
+ For building the docs, run `bun run docs:generate` and `bun run docs:dev`.
89
83
 
90
84
  ---
91
85
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "sst",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
- "version": "4.3.9",
6
+ "version": "4.5.0",
7
7
  "main": "./dist/index.js",
8
8
  "repository": {
9
9
  "type": "git",
@@ -44,14 +44,14 @@
44
44
  "sst": "./bin/sst.mjs"
45
45
  },
46
46
  "optionalDependencies": {
47
- "sst-linux-x86": "4.3.9",
48
- "sst-linux-x64": "4.3.9",
49
- "sst-linux-arm64": "4.3.9",
50
- "sst-darwin-x64": "4.3.9",
51
- "sst-win32-x64": "4.3.9",
52
- "sst-win32-arm64": "4.3.9",
53
- "sst-darwin-arm64": "4.3.9",
54
- "sst-win32-x86": "4.3.9"
47
+ "sst-linux-x86": "4.5.0",
48
+ "sst-linux-x64": "4.5.0",
49
+ "sst-linux-arm64": "4.5.0",
50
+ "sst-darwin-x64": "4.5.0",
51
+ "sst-win32-x64": "4.5.0",
52
+ "sst-darwin-arm64": "4.5.0",
53
+ "sst-win32-x86": "4.5.0",
54
+ "sst-win32-arm64": "4.5.0"
55
55
  },
56
56
  "dependencies": {
57
57
  "aws4fetch": "1.0.18",