File tree Expand file tree Collapse file tree 5 files changed +32
-13
lines changed Expand file tree Collapse file tree 5 files changed +32
-13
lines changed Original file line number Diff line number Diff line change 48
48
"@stacksjs/cli" : " workspace:*" ,
49
49
"@stacksjs/config" : " workspace:*" ,
50
50
"@stacksjs/database" : " workspace:*" ,
51
+ "@stacksjs/error-handling" : " workspace:*" ,
51
52
"@stacksjs/logging" : " workspace:*" ,
52
53
"@stacksjs/pages" : " workspace:*" ,
53
54
"@stacksjs/path" : " workspace:*" ,
60
61
},
61
62
"dependencies" : {
62
63
"@stacksjs/strings" : " workspace:*" ,
63
- "esno" : " ^0.16.3"
64
+ "esno" : " ^0.16.3" ,
65
+ "fast-glob" : " ^3.2.12" ,
66
+ "fs-extra" : " ^11.1.1"
64
67
},
65
68
"devDependencies" : {
69
+ "@stacksjs/types" : " workspace:*" ,
66
70
"@stacksjs/development" : " workspace:*"
67
71
}
68
72
}
Original file line number Diff line number Diff line change 37
37
"prepublishOnly" : " pnpm run build" ,
38
38
"typecheck" : " npx tsc --noEmit"
39
39
},
40
+ "peerDependencies" : {
41
+ "@stacksjs/config" : " workspace:*"
42
+ },
40
43
"dependencies" : {
41
44
"@stacksjs/collections" : " workspace:*"
42
45
},
Original file line number Diff line number Diff line change 1
- import { page as config } from '@stacksjs/config'
2
- import fs from 'fs-extra'
1
+ // import { page as config } from '@stacksjs/config'
2
+ // import fs from 'fs-extra'
3
3
4
4
function generateSettings ( ) {
5
- config . onboarding . pages . each ( ( page : string ) => {
6
- fs . appendFile ( `${ config . path } /${ page } .vue` )
7
- } )
5
+ // config.onboarding.pages.each((page: string) => {
6
+ // fs.appendFile(`${config.path}/${page}.vue`)
7
+ // })
8
8
}
9
9
10
10
function generateOnboarding ( ) {
11
- config . onboarding . pages . each ( ( page : string ) => {
12
- fs . appendFile ( `${ config . path } /${ page } .vue` )
13
- } )
11
+ // config.onboarding.pages.each((page: string) => {
12
+ // fs.appendFile(`${config.path}/${page}.vue`)
13
+ // })
14
14
}
15
15
16
16
export {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import transformerCompileClass from '@unocss/transformer-compile-class'
4
4
import * as UiEngine from 'vue'
5
5
import { computed , ref } from 'vue'
6
6
import * as Store from 'pinia'
7
- import options from '../../../../ config/ui '
7
+ import { ui as options } from '@stacksjs/ config'
8
8
import config from './unocss'
9
9
10
10
export {
You can’t perform that action at this time.
0 commit comments