stacks 0.61.20 → 0.61.22
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/README.md +1 -1
- package/buddy/README.md +1 -1
- package/buddy/package.json +1 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ It’s incredibly easy to get started with this framework. Simply run the follow
|
|
|
33
33
|
```bash
|
|
34
34
|
curl -Ssf stacksjs.org/install | sh # wip
|
|
35
35
|
|
|
36
|
-
# alternatively, if Bun >= v1.
|
|
36
|
+
# alternatively, if Bun >= v1.1.11 is installed already,
|
|
37
37
|
# you may also get started via:
|
|
38
38
|
bunx stacks new my-project
|
|
39
39
|
```
|
package/buddy/README.md
CHANGED
|
@@ -33,7 +33,7 @@ It’s incredibly easy to get started with this framework. Simply run the follow
|
|
|
33
33
|
```bash
|
|
34
34
|
curl -Ssf stacksjs.org/install | sh # wip
|
|
35
35
|
|
|
36
|
-
# alternatively, if Bun >= v1.
|
|
36
|
+
# alternatively, if Bun >= v1.1.11 is installed already,
|
|
37
37
|
# you may also get started via:
|
|
38
38
|
bunx stacks new my-project
|
|
39
39
|
```
|
package/buddy/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.61.
|
|
4
|
+
"version": "0.61.22",
|
|
5
5
|
"description": "The Stacks framework.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -282,6 +282,11 @@
|
|
|
282
282
|
"types": "./sms/dist/index.d.ts",
|
|
283
283
|
"import": "./sms/dist/index.js"
|
|
284
284
|
},
|
|
285
|
+
"./stepper": {
|
|
286
|
+
"bun": "./components/stepper/src/index.ts",
|
|
287
|
+
"types": "./components/stepper/dist/index.d.ts",
|
|
288
|
+
"import": "./components/stepper/dist/index.js"
|
|
289
|
+
},
|
|
285
290
|
"./storage": {
|
|
286
291
|
"bun": "./storage/src/index.ts",
|
|
287
292
|
"types": "./storage/dist/index.d.ts",
|