File tree Expand file tree Collapse file tree 6 files changed +658
-217
lines changed
Expand file tree Collapse file tree 6 files changed +658
-217
lines changed Original file line number Diff line number Diff line change 1313 "author" : " xiaodong2008 <hi@xiaodong.moe>" ,
1414 "license" : " MIT" ,
1515 "devDependencies" : {
16- "@types/node" : " ^20.11.15 " ,
16+ "@types/node" : " ^22.7.5 " ,
1717 "cross-env" : " ^7.0.3" ,
1818 "markdown-table" : " ^3.0.3" ,
19- "prettier" : " ^3.2.5 " ,
19+ "prettier" : " ^3.3.3 " ,
2020 "pretty-bytes" : " ^6.1.1" ,
21- "tslib" : " ^2.6.2 " ,
22- "typescript" : " ^5.4.5 "
21+ "tslib" : " ^2.7.0 " ,
22+ "typescript" : " ^5.6.3 "
2323 }
2424}
Original file line number Diff line number Diff line change 66 "bugs" : " https://github.com/fastjs-team/core/issues" ,
77 "funding" : " https://github.com/sponsors/xiaodong2008" ,
88 "main" : " index.js" ,
9+ "type" : " module" ,
910 "module" : " dist/fastjs.esm-bundler.js" ,
1011 "types" : " dist/types/main.d.ts" ,
1112 "unpkg" : " dist/fastjs.global.js" ,
6465 "@rollup/plugin-terser" : " ^0.4.4" ,
6566 "@rollup/plugin-typescript" : " ^11.1.6" ,
6667 "jsdom" : " ^24.0.0" ,
68+ "rolldown" : " ^0.13.2" ,
6769 "rollup" : " ^4.9.6" ,
6870 "vitest" : " ^1.5.0"
6971 }
Original file line number Diff line number Diff line change 11import typescript from "@rollup/plugin-typescript" ;
22import replace from "@rollup/plugin-replace" ;
33import terser from "@rollup/plugin-terser" ;
4- import packageInfo from "./package.json" assert { type : "json " } ;
4+ import packageInfo from "./package.json" with { type : "json" } ;
55const version = packageInfo . version ;
66const fileBaseName = "fastjs" ;
77const packageConfig = [ ] ;
Original file line number Diff line number Diff line change 33 /* Visit https://aka.ms/tsconfig to read more about this file */
44 "target" : " es2022" ,
55 "module" : " ESNext" ,
6- "sourceMap" : true ,
6+ "sourceMap" : false ,
77 "esModuleInterop" : true ,
88 "forceConsistentCasingInFileNames" : true ,
99 "strict" : true ,
1212 "moduleResolution" : " node" ,
1313 "paths" : {
1414 "@/*" : [" ./src/*" ]
15- }
15+ },
16+ "declaration" : true ,
17+ "declarationDir" : " ./dist/types"
1618 },
1719 "include" : [" src/**/*.ts" ],
1820 "exclude" : [" node_modules" ]
Original file line number Diff line number Diff line change 3030 ],
3131 "license" : " MIT" ,
3232 "dependencies" : {
33- "@inquirer/prompts" : " ^5 .0.2 " ,
34- "commander" : " ^12.0 .0" ,
35- "ora" : " ^8.0.1 " ,
36- "picocolors" : " ^1.0 .0"
33+ "@inquirer/prompts" : " ^7 .0.0 " ,
34+ "commander" : " ^12.1 .0" ,
35+ "ora" : " ^8.1.0 " ,
36+ "picocolors" : " ^1.1 .0"
3737 },
3838 "devDependencies" : {
39- "esbuild" : " ^0.20.2 "
39+ "esbuild" : " ^0.24.0 "
4040 }
4141}
You can’t perform that action at this time.
0 commit comments