@stacksjs/buddy 0.58.27 → 0.58.43
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 +2 -2
- package/dist/chunk-0455e53fab4244b1.js +19 -0
- package/dist/chunk-2c32c64e1ff8261c.js +1706 -0
- package/dist/chunk-3d4c74b796ece2a2.js +1746 -0
- package/dist/{chunk-fd47b42fb923a4be.js → chunk-457563296d7e9010.js} +172 -132
- package/dist/chunk-61e8f138963fc709.js +1707 -0
- package/dist/chunk-92fbe9deb5f747b8.js +1712 -0
- package/dist/chunk-a52fb0419e9febc7.js +1712 -0
- package/dist/chunk-ac2e8a0f7df4fd87.js +1746 -0
- package/dist/chunk-c58676a39cd23812.js +1707 -0
- package/dist/cli.js +6 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ Develop beautiful, reactive, composable UIs without learning a new set of langua
|
|
|
114
114
|
It's incredibly easy to get started with this framework. Simply run the following command in your terminal:
|
|
115
115
|
|
|
116
116
|
```bash
|
|
117
|
-
|
|
117
|
+
curl -Ssf stacksjs.org | sh # wip
|
|
118
118
|
|
|
119
119
|
# alternatively, if Bun >= v1.0 is installed already,
|
|
120
120
|
# you may also get started via:
|
|
@@ -171,7 +171,7 @@ buddy upgrade:all # auto-upgrades all of the above
|
|
|
171
171
|
buddy dev # starts the frontend dev server
|
|
172
172
|
buddy dev -i # prompts any of the dev servers (components, functions, views, or docs)
|
|
173
173
|
buddy dev:api # starts the API dev server
|
|
174
|
-
buddy dev:
|
|
174
|
+
buddy dev:dashboard # starts the Admin/Dashboard dev server
|
|
175
175
|
buddy dev:desktop # starts the Desktop dev server
|
|
176
176
|
buddy dev:views # starts frontend dev server
|
|
177
177
|
buddy dev:components # starts component dev server
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __toESM = (mod, isNodeMode, target) => {
|
|
7
|
+
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
8
|
+
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
9
|
+
for (let key of __getOwnPropNames(mod))
|
|
10
|
+
if (!__hasOwnProp.call(to, key))
|
|
11
|
+
__defProp(to, key, {
|
|
12
|
+
get: () => mod[key],
|
|
13
|
+
enumerable: true
|
|
14
|
+
});
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
18
|
+
|
|
19
|
+
export { __toESM, __commonJS };
|