Skip to content

Commit d71ee4c

Browse files
committed
chore: wip
1 parent b3f9b5b commit d71ee4c

File tree

171 files changed

+1866
-1768
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+1866
-1768
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ APP_NAME=Stacks
22
APP_ENV=development
33
APP_KEY=
44
APP_DEBUG=true
5-
APP_URL=stacks.dev
5+
APP_URL=stacks.test
66
APP_SUBDOMAIN_API=api
77
APP_SUBDOMAIN_DOCS=docs
88
APP_SUBDOMAIN_LIBRARY=library

.stacks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ _Develop dynamic UIs with helpers for atomic design, and much more._
3838
- 🌐 **Web** _"a routing & templating engine that makes sense" using components—SSG & PWA ready_
3939
- 🖥️ **Desktop** _components as desktop elements_
4040
- 📚 **Library** _auto-builds component & function libraries_
41-
- ⚡️ Powered by Nitro, Tauri, UnoCSS, Vite & Vue
41+
- ⚡️ Powered by Bun, Nitro, Tauri, UnoCSS, Vite & Vue
4242

4343
### Stacks Functions
4444

.stacks/api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
"deploy": "wip"
3535
},
3636
"dependencies": {
37-
"@stacksjs/alias": "link:@stacksjs/alias",
38-
"@stacksjs/config": "link:@stacksjs/config",
39-
"@stacksjs/path": "link:@stacksjs/path",
40-
"@stacksjs/server": "link@stacksjs/server:"
37+
"@stacksjs/alias": "workspace:*",
38+
"@stacksjs/config": "workspace:*",
39+
"@stacksjs/path": "workspace:*",
40+
"@stacksjs/server": "workspace:*"
4141
}
4242
}

.stacks/core/actions/package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -225,34 +225,34 @@
225225
"prepublishOnly": "bun run build"
226226
},
227227
"peerDependencies": {
228-
"@stacksjs/cli": "link:@stacksjs/cli",
229-
"@stacksjs/config": "link:@stacksjs/config",
230-
"@stacksjs/database": "link:@stacksjs/database",
231-
"@stacksjs/error-handling": "link:@stacksjs/handling",
232-
"@stacksjs/logging": "link:@stacksjs/logging",
233-
"@stacksjs/path": "link:@stacksjs/path",
234-
"@stacksjs/security": "link:@stacksjs/security",
235-
"@stacksjs/storage": "link:@stacksjs/storage",
236-
"@stacksjs/types": "link:@stacksjs/types",
237-
"@stacksjs/utils": "link:@stacksjs/utils",
228+
"@stacksjs/cli": "workspace:*",
229+
"@stacksjs/config": "workspace:*",
230+
"@stacksjs/database": "workspace:*",
231+
"@stacksjs/error-handling": "workspace:*",
232+
"@stacksjs/logging": "workspace:*",
233+
"@stacksjs/path": "workspace:*",
234+
"@stacksjs/security": "workspace:*",
235+
"@stacksjs/storage": "workspace:*",
236+
"@stacksjs/types": "workspace:*",
237+
"@stacksjs/utils": "workspace:*",
238238
"markdown-it": "^13.0.1",
239239
"vue-component-meta": "^1.8.6"
240240
},
241241
"dependencies": {
242-
"@stacksjs/cli": "link:@stacksjs/cli",
243-
"@stacksjs/config": "link:@stacksjs/config",
244-
"@stacksjs/database": "link:@stacksjs/database",
245-
"@stacksjs/error-handling": "link:@stacksjs/handling",
246-
"@stacksjs/logging": "link:@stacksjs/logging",
247-
"@stacksjs/path": "link:@stacksjs/path",
248-
"@stacksjs/security": "link:@stacksjs/security",
249-
"@stacksjs/storage": "link:@stacksjs/storage",
250-
"@stacksjs/strings": "link:@stacksjs/strings",
251-
"@stacksjs/utils": "link:@stacksjs/utils",
242+
"@stacksjs/cli": "workspace:*",
243+
"@stacksjs/config": "workspace:*",
244+
"@stacksjs/database": "workspace:*",
245+
"@stacksjs/error-handling": "workspace:*",
246+
"@stacksjs/logging": "workspace:*",
247+
"@stacksjs/path": "workspace:*",
248+
"@stacksjs/security": "workspace:*",
249+
"@stacksjs/storage": "workspace:*",
250+
"@stacksjs/strings": "workspace:*",
251+
"@stacksjs/utils": "workspace:*",
252252
"markdown-it": "^13.0.1",
253253
"vue-component-meta": "^1.8.6"
254254
},
255255
"devDependencies": {
256-
"@stacksjs/development": "link:@stacksjs/development"
256+
"@stacksjs/development": "workspace:*"
257257
}
258258
}

.stacks/core/actions/src/helpers/package-json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export async function generatePackageJson(type: PackageJsonType) {
7676
"prepublishOnly": "bun run build"
7777
},
7878
"devDependencies": {
79-
"stacks": "link:stacks"
79+
"stacks": "workspace:*"
8080
}
8181
}
8282
`,

.stacks/core/ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@
4343
"prepublishOnly": "bun run build"
4444
},
4545
"devDependencies": {
46-
"@stacksjs/development": "link:@stacksjs/development"
46+
"@stacksjs/development": "workspace:*"
4747
}
4848
}

.stacks/core/alias/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@
4040
"prepublishOnly": "bun run build"
4141
},
4242
"peerDependencies": {
43-
"@stacksjs/path": "link:@stacksjs/path"
43+
"@stacksjs/path": "workspace:*"
4444
},
4545
"dependencies": {
46-
"@stacksjs/path": "link:@stacksjs/path"
46+
"@stacksjs/path": "workspace:*"
4747
},
4848
"devDependencies": {
49-
"@stacksjs/development": "link:@stacksjs/development"
49+
"@stacksjs/development": "workspace:*"
5050
}
5151
}

.stacks/core/analytics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
"prepublishOnly": "bun run build"
5050
},
5151
"devDependencies": {
52-
"@stacksjs/development": "link:@stacksjs/development"
52+
"@stacksjs/development": "workspace:*"
5353
}
54-
}
54+
}

.stacks/core/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@
4141
"prepublishOnly": "bun run build"
4242
},
4343
"devDependencies": {
44-
"@stacksjs/development": "link:@stacksjs/development"
44+
"@stacksjs/development": "workspace:*"
4545
}
4646
}

.stacks/core/buddy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ _Develop dynamic UIs with helpers for atomic design, and much more._
3838
- 🌐 **Web** _"a routing & templating engine that makes sense" using components—SSG & PWA ready_
3939
- 🖥️ **Desktop** _components as desktop elements_
4040
- 📚 **Library** _auto-builds component & function libraries_
41-
- ⚡️ Powered by Nitro, Tauri, UnoCSS, Vite & Vue
41+
- ⚡️ Powered by Bun, Nitro, Tauri, UnoCSS, Vite & Vue
4242

4343
### Stacks Functions
4444

0 commit comments

Comments
 (0)