Skip to content

Commit a07fe7e

Browse files
committed
chore: wip
1 parent 963b71f commit a07fe7e

File tree

9 files changed

+995
-23
lines changed

9 files changed

+995
-23
lines changed

storage/framework/core/cloud/src/cloud/cdn.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ export class CdnStack {
233233
}
234234

235235
shouldDeployApi() {
236-
console.log('shouldDeployApi', config.cloud.api?.deploy)
237236
return config.cloud.api?.deploy
238237
}
239238

storage/framework/core/cloud/src/cloud/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ export class Cloud extends Stack {
134134
docsBucket: this.storage.docsBucket,
135135
cdn: this.cdn.distribution,
136136
})
137-
console.log('here6')
138137
}
139138

140139
shouldDeployApi() {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { path } from './paths'
1+
// import { path } from './paths'
22

33
export * from './paths'
44

5-
export default path
5+
// export default path

storage/framework/core/scheduler/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ export type {
1717
export * from './types/utils'
1818
export * from './schedule'
1919

20-
export default Schedule
20+
// export default Schedule

storage/framework/core/vite-config/src/dashboard.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,8 @@ export default defineConfig({
9494
],
9595

9696
dts: p.frameworkPath('types/auto-imports.d.ts'),
97-
9897
dirs: [p.userLibsPath('components'), p.userLibsPath('functions'), p.resourcesPath('stores'), p.corePath()],
99-
10098
vueTemplate: true,
101-
102-
// eslintrc: {
103-
// enabled: true,
104-
// filepath: '../../.eslintrc-auto-import.json', // Default `./.eslintrc-auto-import.json`
105-
// globalsPropValue: true, // Default `true`, (true | false | 'readonly' | 'readable' | 'writable' | 'writeable')
106-
// },
10799
}),
108100

109101
components(),

storage/framework/core/vite-plugin/src/auto-imports.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,15 @@ export function autoImports(options?: AutoImportsOptions) {
2424
],
2525

2626
dts: p.frameworkPath('types/auto-imports.d.ts'),
27-
2827
dirs: [p.userLibsPath('components'), p.userLibsPath('functions'), p.resourcesPath('stores'), p.corePath()],
29-
3028
vueTemplate: true,
3129

32-
// eslintrc: {
33-
// enabled: true,
34-
// filepath: './.eslintrc-auto-import.json', // Default `./.eslintrc-auto-import.json`
35-
// globalsPropValue: true, // Default `true`, (true | false | 'readonly' | 'readable' | 'writable' | 'writeable')
36-
// },
30+
// Generate corresponding .biomelintrc-auto-import.json file.
31+
// biomejs extends Docs - https://biomejs.dev/guides/how-biome-works/#the-extends-option
32+
biomelintrc: {
33+
enabled: true, // Default `false`
34+
filepath: './.biomelintrc-auto-import.json', // Default `./.biomelintrc-auto-import.json`
35+
},
3736

3837
...options,
3938
} as AutoImportsOptions)

storage/framework/ide/dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ bazelignore
2323
bazelproject
2424
bazelrc
2525
biomejs
26+
biomelintrc
2627
boject
2728
booleanish
2829
Bootcamp

storage/framework/types/auto-imports.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ declare global {
751751
const sorts: typeof import('../core/search-engine/src/index')['sorts']
752752
const spyOn: typeof import('../core/testing/src/index')['spyOn']
753753
const sql: typeof import('../core/database/src/types')['sql']
754-
const src: typeof import('../core/scheduler/src/index')['default']
754+
const src: typeof import('../core/events/src/index')['default']
755755
const stacks: typeof import('../core/build/src/index')['stacks']
756756
const stacksPath: typeof import('../core/path/src/paths')['stacksPath']
757757
const sticky: typeof import('../core/utils/src/regex')['sticky']
@@ -1754,7 +1754,7 @@ declare module 'vue' {
17541754
readonly sort: UnwrapRef<typeof import('../core/search-engine/src/index')['sort']>
17551755
readonly sorts: UnwrapRef<typeof import('../core/search-engine/src/index')['sorts']>
17561756
readonly sql: UnwrapRef<typeof import('../core/database/src/types')['sql']>
1757-
readonly src: UnwrapRef<typeof import('../core/scheduler/src/index')['default']>
1757+
readonly src: UnwrapRef<typeof import('../core/events/src/index')['default']>
17581758
readonly stacksPath: UnwrapRef<typeof import('../core/path/src/paths')['stacksPath']>
17591759
readonly sticky: UnwrapRef<typeof import('../core/utils/src/regex')['sticky']>
17601760
readonly storage: UnwrapRef<typeof import('../core/storage/src/index')['storage']>
@@ -2721,7 +2721,7 @@ declare module '@vue/runtime-core' {
27212721
readonly sort: UnwrapRef<typeof import('../core/search-engine/src/index')['sort']>
27222722
readonly sorts: UnwrapRef<typeof import('../core/search-engine/src/index')['sorts']>
27232723
readonly sql: UnwrapRef<typeof import('../core/database/src/types')['sql']>
2724-
readonly src: UnwrapRef<typeof import('../core/scheduler/src/index')['default']>
2724+
readonly src: UnwrapRef<typeof import('../core/events/src/index')['default']>
27252725
readonly stacksPath: UnwrapRef<typeof import('../core/path/src/paths')['stacksPath']>
27262726
readonly sticky: UnwrapRef<typeof import('../core/utils/src/regex')['sticky']>
27272727
readonly storage: UnwrapRef<typeof import('../core/storage/src/index')['storage']>

0 commit comments

Comments
 (0)