@stacksjs/buddy 0.58.28 → 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 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
- sh <(curl stacksjs.org) my-project
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:admin # starts the Admin/Dashboard dev server
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 };