Skip to content

Commit d09a327

Browse files
committed
chore: wip
1 parent c57c2e6 commit d09a327

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.stacks/core/build/web-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
componentsRoot: componentsPath(),
99
components: '**\/[a-zA-Z]*.vue',
1010
outFile: frameworkPath('web-types.json'),
11-
packageName: library.name,
11+
packageName: library.name || 'stacks',
1212
packageVersion: await frameworkVersion(),
1313
watch: false,
1414
} satisfies WebTypesBuilderConfig

.stacks/core/error-handling/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ErrorHandler {
2323

2424
static handle(err: StacksError, options?: any) {
2525
this.writeErrorToConsole(err, options)
26-
this.writeErrorToFile(err, options)
26+
this.writeErrorToFile(err)
2727
}
2828

2929
static handleError(err: Error, options?: any) {

.stacks/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
"@stacksjs/development/*": ["./core/development/src/*"],
6262
// "@stacksjs/desktop": ["./core/desktop/src/index.ts"],
6363
// "@stacksjs/desktop/*": ["./core/desktop/src/*"],
64-
"@stacksjs/dns": ["./core/domains/src/index.ts"],
65-
"@stacksjs/dns/*": ["./core/domains/src/*"],
64+
"@stacksjs/dns": ["./core/dns/src/index.ts"],
65+
"@stacksjs/dns/*": ["./core/dns/src/*"],
6666
"@stacksjs/email": ["./core/email/src/index.ts"],
6767
"@stacksjs/email/*": ["./core/email/src/*"],
6868
"@stacksjs/events": ["./core/events/src/index.ts"],

0 commit comments

Comments
 (0)