Skip to content

Commit f5ba62c

Browse files
committed
chore: wip
1 parent 0abad09 commit f5ba62c

File tree

113 files changed

+358
-173
lines changed

Some content is hidden

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

113 files changed

+358
-173
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: [chrisbbreuer]
1+
github: [stacksjs, chrisbbreuer]

.stacks/auto-imports.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ declare global {
123123
const doesFolderExist: typeof import('./core/storage/src/index')['doesFolderExist']
124124
const domainsPath: typeof import('./core/path/src/index')['domainsPath']
125125
const dotCase: typeof import('./core/strings/src/case')['dotCase']
126-
const driversPath: typeof import('./core/path/src/index')['driversPath']
127126
const dump: typeof import('./core/logging/src/index')['dump']
128127
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
129128
const effectScope: typeof import('vue')['effectScope']
@@ -766,7 +765,6 @@ declare module 'vue' {
766765
readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
767766
readonly domainsPath: UnwrapRef<typeof import('./core/path/src/index')['domainsPath']>
768767
readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
769-
readonly driversPath: UnwrapRef<typeof import('./core/path/src/index')['driversPath']>
770768
readonly dump: UnwrapRef<typeof import('./core/logging/src/index')['dump']>
771769
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
772770
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>

.stacks/core/actions/build.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineBuildConfig } from '@stacksjs/development'
1+
import { defineBuildConfig } from 'unbuild'
22

33
// eslint-disable-next-line no-console
44
console.log('Building core... ?')

.stacks/core/actions/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"README.md"
4040
],
4141
"scripts": {
42-
"build": "unbuild",
43-
"dev": "unbuild --stub",
42+
"build": "npx unbuild",
43+
"dev": "npx unbuild --stub",
4444
"prepublishOnly": "pnpm run build",
4545
"typecheck": "tsc --noEmit"
4646
},

.stacks/core/ai/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"README.md"
3434
],
3535
"scripts": {
36-
"build": "unbuild",
37-
"dev": "unbuild --stub",
36+
"build": "npx unbuild .",
37+
"dev": "npx unbuild --stub",
3838
"prepublishOnly": "pnpm run build",
3939
"typecheck": "tsc --noEmit"
4040
},

.stacks/core/alias/build.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineBuildConfig } from '@stacksjs/development'
1+
import { defineBuildConfig } from 'unbuild'
22

33
export default defineBuildConfig({
44
entries: [

.stacks/core/alias/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"README.md"
3232
],
3333
"scripts": {
34-
"build": "unbuild",
35-
"dev": "unbuild --stub",
34+
"build": "npx unbuild",
35+
"dev": "npx unbuild --stub",
3636
"prepublishOnly": "pnpm run build",
3737
"typecheck": "tsc --noEmit"
3838
},

.stacks/core/analytics/build.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineBuildConfig } from '@stacksjs/development'
1+
import { defineBuildConfig } from 'unbuild'
22

33
export default defineBuildConfig({
44
entries: [

.stacks/core/analytics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"README.md"
4040
],
4141
"scripts": {
42-
"build": "unbuild",
43-
"dev": "unbuild --stub",
42+
"build": "npx unbuild",
43+
"dev": "npx unbuild --stub",
4444
"prepublishOnly": "pnpm run build",
4545
"typecheck": "tsc --noEmit"
4646
},

.stacks/core/arrays/build.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineBuildConfig } from '@stacksjs/development'
1+
import { defineBuildConfig } from 'unbuild'
22

33
export default defineBuildConfig({
44
entries: [

0 commit comments

Comments
 (0)