sst 3.8.4 → 3.8.6
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/dist/aws/task.d.ts +2 -2
- package/dist/aws/task.js +1 -1
- package/package.json +6 -6
package/dist/aws/task.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare namespace task {
|
|
|
19
19
|
* For example, let's say you have a task.
|
|
20
20
|
*
|
|
21
21
|
* ```js title="sst.config.ts"
|
|
22
|
-
*
|
|
22
|
+
* new sst.aws.Task("MyTask", { cluster });
|
|
23
23
|
* ```
|
|
24
24
|
*
|
|
25
25
|
* `Resource.MyTask` will have all the link data.
|
|
@@ -137,7 +137,7 @@ export declare namespace task {
|
|
|
137
137
|
* For example, let's say you have defined a task.
|
|
138
138
|
*
|
|
139
139
|
* ```js title="sst.config.ts"
|
|
140
|
-
*
|
|
140
|
+
* new sst.aws.Task("MyTask", { cluster });
|
|
141
141
|
* ```
|
|
142
142
|
*
|
|
143
143
|
* You can then run the task in your application with the SDK.
|
package/dist/aws/task.js
CHANGED
|
@@ -79,7 +79,7 @@ export var task;
|
|
|
79
79
|
* For example, let's say you have defined a task.
|
|
80
80
|
*
|
|
81
81
|
* ```js title="sst.config.ts"
|
|
82
|
-
*
|
|
82
|
+
* new sst.aws.Task("MyTask", { cluster });
|
|
83
83
|
* ```
|
|
84
84
|
*
|
|
85
85
|
* You can then run the task in your application with the SDK.
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "sst",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
|
-
"version": "3.8.
|
|
6
|
+
"version": "3.8.6",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"sst": "./bin/sst.mjs"
|
|
42
42
|
},
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"sst-linux-x86": "3.8.
|
|
45
|
-
"sst-linux-
|
|
46
|
-
"sst-linux-
|
|
47
|
-
"sst-darwin-x64": "3.8.
|
|
48
|
-
"sst-darwin-arm64": "3.8.
|
|
44
|
+
"sst-linux-x86": "3.8.6",
|
|
45
|
+
"sst-linux-x64": "3.8.6",
|
|
46
|
+
"sst-linux-arm64": "3.8.6",
|
|
47
|
+
"sst-darwin-x64": "3.8.6",
|
|
48
|
+
"sst-darwin-arm64": "3.8.6"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"aws4fetch": "^1.0.18",
|