File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 3
3
"type" : " module" ,
4
4
"version" : " 0.1.3" ,
5
5
"private" : true ,
6
- "packageManager" : " pnpm@8.7.1 " ,
6
+ "packageManager" : " pnpm@8.9.0 " ,
7
7
"description" : " A Set of AI Utils" ,
8
8
"license" : " MIT" ,
9
9
"scripts" : {
10
10
"release" : " bumpp -r" ,
11
11
"lint" : " eslint ." ,
12
12
"lint:fix" : " eslint . --fix" ,
13
- "build" : " pnpm run -r build" ,
13
+ "build" : " pnpm run --filter utils-ai build && pnpm run --filter utils-ai-vscode build" ,
14
14
"build:stub" : " pnpm run -r build:stub" ,
15
15
"postinstall" : " pnpm run build:stub" ,
16
16
"ext:dev" : " pnpm run --filter utils-ai-vscode dev"
Original file line number Diff line number Diff line change 68
68
},
69
69
"scripts" : {
70
70
"dev" : " pnpm run build --watch src" ,
71
- "build" : " tsup src/index.ts --external vscode " ,
71
+ "build" : " tsup src/index.ts" ,
72
72
"vscode:prepublish" : " pnpm run build" ,
73
73
"publish" : " vsce publish --no-dependencies"
74
74
},
75
75
"dependencies" : {
76
76
"utils-ai" : " 0.1.2"
77
77
},
78
78
"devDependencies" : {
79
- "@types/node" : " 18.x " ,
79
+ "@types/node" : " ^ 18.18.4 " ,
80
80
"@types/vscode" : " ^1.83.0" ,
81
81
"@vscode/vsce" : " ^2.21.1" ,
82
82
"tsup" : " ^7.2.0" ,
Original file line number Diff line number Diff line change
1
+ import { defineConfig } from 'tsup'
2
+
3
+ export default defineConfig ( {
4
+ external : [ 'vscode' ] ,
5
+ noExternal : [ 'utils-ai' ] ,
6
+ clean : true ,
7
+ } )
Original file line number Diff line number Diff line change 2
2
"name" : " utils-ai" ,
3
3
"type" : " module" ,
4
4
"version" : " 0.1.3" ,
5
- "packageManager" : " pnpm@8.7.1 " ,
5
+ "packageManager" : " pnpm@8.9.0 " ,
6
6
"description" : " A CLI of AI Utils" ,
7
7
"author" :
" Estéban Soubiran <[email protected] > (https://github.com/barbapapazes/)" ,
8
8
"license" : " MIT" ,
46
46
"rc9" : " ^2.1.1"
47
47
},
48
48
"devDependencies" : {
49
- "@types/node" : " ^20.8.3 " ,
49
+ "@types/node" : " ^20.8.4 " ,
50
50
"jiti" : " ^1.20.0" ,
51
51
"typescript" : " ^5.2.2" ,
52
52
"unbuild" : " ^2.0.0"
You can’t perform that action at this time.
0 commit comments