powerlines 0.14.0 → 0.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -21
- package/dist/_virtual/_rolldown/runtime.cjs +29 -0
- package/dist/_virtual/_rolldown/runtime.mjs +36 -0
- package/dist/api.cjs +10 -0
- package/dist/api.d.cts +2 -0
- package/dist/api.d.mts +2 -0
- package/dist/api.mjs +3 -0
- package/dist/astro.cjs +24 -28
- package/dist/astro.d.cts +14 -47
- package/dist/astro.d.cts.map +1 -0
- package/dist/astro.d.mts +25 -0
- package/dist/astro.d.mts.map +1 -0
- package/dist/astro.mjs +25 -0
- package/dist/astro.mjs.map +1 -0
- package/dist/config.cjs +9 -0
- package/dist/config.d.cts +1 -0
- package/dist/config.d.mts +1 -0
- package/dist/config.mjs +3 -0
- package/dist/constants.cjs +9 -0
- package/dist/constants.d.cts +1 -0
- package/dist/constants.d.mts +1 -0
- package/dist/constants.mjs +3 -0
- package/dist/context.cjs +9 -0
- package/dist/context.d.cts +1 -0
- package/dist/context.d.mts +1 -0
- package/dist/context.mjs +3 -0
- package/dist/engine.cjs +30 -0
- package/dist/engine.d.cts +24 -0
- package/dist/engine.d.cts.map +1 -0
- package/dist/engine.d.mts +24 -0
- package/dist/engine.d.mts.map +1 -0
- package/dist/engine.mjs +29 -0
- package/dist/engine.mjs.map +1 -0
- package/dist/esbuild.cjs +51 -23
- package/dist/esbuild.d.cts +13 -45
- package/dist/esbuild.d.cts.map +1 -0
- package/dist/esbuild.d.mts +25 -0
- package/dist/esbuild.d.mts.map +1 -0
- package/dist/esbuild.mjs +43 -0
- package/dist/esbuild.mjs.map +1 -0
- package/dist/farm.cjs +26 -18
- package/dist/farm.d.cts +15 -47
- package/dist/farm.d.cts.map +1 -0
- package/dist/farm.d.mts +25 -0
- package/dist/farm.d.mts.map +1 -0
- package/dist/farm.mjs +26 -0
- package/dist/farm.mjs.map +1 -0
- package/dist/index.cjs +40 -91
- package/dist/index.d.cts +21 -60
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +26 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +34 -0
- package/dist/index.mjs.map +1 -0
- package/dist/next.cjs +35 -27
- package/dist/next.d.cts +6 -4
- package/dist/next.d.cts.map +1 -0
- package/dist/{next.d.ts → next.d.mts} +6 -4
- package/dist/next.d.mts.map +1 -0
- package/dist/next.mjs +36 -0
- package/dist/next.mjs.map +1 -0
- package/dist/nuxt.cjs +44 -29
- package/dist/nuxt.d.cts +19 -10
- package/dist/nuxt.d.cts.map +1 -0
- package/dist/nuxt.d.mts +29 -0
- package/dist/nuxt.d.mts.map +1 -0
- package/dist/nuxt.mjs +44 -0
- package/dist/nuxt.mjs.map +1 -0
- package/dist/package.cjs +18 -0
- package/dist/package.mjs +7 -0
- package/dist/package.mjs.map +1 -0
- package/dist/plugin-utils.cjs +9 -0
- package/dist/plugin-utils.d.cts +1 -0
- package/dist/plugin-utils.d.mts +1 -0
- package/dist/plugin-utils.mjs +3 -0
- package/dist/rolldown.cjs +43 -22
- package/dist/rolldown.d.cts +10 -43
- package/dist/rolldown.d.cts.map +1 -0
- package/dist/rolldown.d.mts +24 -0
- package/dist/rolldown.d.mts.map +1 -0
- package/dist/rolldown.mjs +35 -0
- package/dist/rolldown.mjs.map +1 -0
- package/dist/rollup.cjs +34 -22
- package/dist/rollup.d.cts +11 -43
- package/dist/rollup.d.cts.map +1 -0
- package/dist/rollup.d.mts +25 -0
- package/dist/rollup.d.mts.map +1 -0
- package/dist/rollup.mjs +26 -0
- package/dist/rollup.mjs.map +1 -0
- package/dist/rspack.cjs +34 -22
- package/dist/rspack.d.cts +14 -46
- package/dist/rspack.d.cts.map +1 -0
- package/dist/rspack.d.mts +25 -0
- package/dist/rspack.d.mts.map +1 -0
- package/dist/rspack.mjs +26 -0
- package/dist/rspack.mjs.map +1 -0
- package/dist/schemas.cjs +9 -0
- package/dist/schemas.d.cts +1 -0
- package/dist/schemas.d.mts +1 -0
- package/dist/schemas.mjs +3 -0
- package/dist/storage.cjs +9 -0
- package/dist/storage.d.cts +1 -0
- package/dist/storage.d.mts +1 -0
- package/dist/storage.mjs +3 -0
- package/dist/tsdown.cjs +96 -0
- package/dist/tsdown.d.cts +31 -0
- package/dist/tsdown.d.cts.map +1 -0
- package/dist/tsdown.d.mts +31 -0
- package/dist/tsdown.d.mts.map +1 -0
- package/dist/tsdown.mjs +82 -0
- package/dist/tsdown.mjs.map +1 -0
- package/dist/tsup.cjs +67 -24
- package/dist/tsup.d.cts +12 -8
- package/dist/tsup.d.cts.map +1 -0
- package/dist/{tsup.d.ts → tsup.d.mts} +12 -8
- package/dist/tsup.d.mts.map +1 -0
- package/dist/tsup.mjs +59 -0
- package/dist/tsup.mjs.map +1 -0
- package/dist/types.cjs +0 -0
- package/dist/types.d.cts +8 -0
- package/dist/types.d.cts.map +1 -0
- package/dist/types.d.mts +8 -0
- package/dist/types.d.mts.map +1 -0
- package/dist/types.mjs +1 -0
- package/dist/typescript.cjs +9 -0
- package/dist/typescript.d.cts +1 -0
- package/dist/typescript.d.mts +1 -0
- package/dist/typescript.mjs +3 -0
- package/dist/unbuild.cjs +17 -0
- package/dist/unbuild.d.cts +2 -0
- package/dist/unbuild.d.mts +2 -0
- package/dist/unbuild.mjs +3 -0
- package/dist/unloader.cjs +23 -26
- package/dist/unloader.d.cts +11 -45
- package/dist/unloader.d.cts.map +1 -0
- package/dist/unloader.d.mts +22 -0
- package/dist/unloader.d.mts.map +1 -0
- package/dist/unloader.mjs +23 -0
- package/dist/unloader.mjs.map +1 -0
- package/dist/unplugin.cjs +105 -37
- package/dist/unplugin.d.cts +9 -69
- package/dist/unplugin.d.cts.map +1 -0
- package/dist/unplugin.d.mts +17 -0
- package/dist/unplugin.d.mts.map +1 -0
- package/dist/unplugin.mjs +101 -0
- package/dist/unplugin.mjs.map +1 -0
- package/dist/utils.cjs +25 -0
- package/dist/utils.d.cts +3 -0
- package/dist/utils.d.mts +3 -0
- package/dist/utils.mjs +7 -0
- package/dist/vite.cjs +76 -24
- package/dist/vite.d.cts +12 -44
- package/dist/vite.d.cts.map +1 -0
- package/dist/vite.d.mts +25 -0
- package/dist/vite.d.mts.map +1 -0
- package/dist/vite.mjs +66 -0
- package/dist/vite.mjs.map +1 -0
- package/dist/webpack.cjs +34 -23
- package/dist/webpack.d.cts +10 -43
- package/dist/webpack.d.cts.map +1 -0
- package/dist/webpack.d.mts +24 -0
- package/dist/webpack.d.mts.map +1 -0
- package/dist/webpack.mjs +25 -0
- package/dist/webpack.mjs.map +1 -0
- package/files/application/README.md.hbs +16 -42
- package/files/application/package.json.hbs +7 -28
- package/files/common/jest.config.ts.hbs +2 -3
- package/files/common/tsconfig.json.hbs +5 -10
- package/files/common/tsconfig.spec.json.hbs +3 -13
- package/files/library/README.md.hbs +11 -34
- package/files/library/package.json.hbs +9 -32
- package/package.json +253 -342
- package/schemas/fs.capnp +42 -0
- package/dist/astro.d.ts +0 -58
- package/dist/astro.js +0 -11
- package/dist/babel-types.d.ts +0 -292
- package/dist/chunk-22K72CJ5.cjs +0 -18
- package/dist/chunk-2VIXD2XB.js +0 -3
- package/dist/chunk-4AKYOJXA.cjs +0 -20
- package/dist/chunk-4HGQJ4KR.js +0 -11
- package/dist/chunk-4JCNAKOE.cjs +0 -4
- package/dist/chunk-5VPVJHJO.cjs +0 -18
- package/dist/chunk-6TJGZR5X.js +0 -46
- package/dist/chunk-6ZGIV2SU.cjs +0 -4
- package/dist/chunk-7BZQBW77.cjs +0 -4
- package/dist/chunk-7MTW3KR2.cjs +0 -12
- package/dist/chunk-7QVYU63E.js +0 -6
- package/dist/chunk-7UIYU6SC.js +0 -39
- package/dist/chunk-7WMWRX2S.cjs +0 -12
- package/dist/chunk-A3BBPLTY.js +0 -9
- package/dist/chunk-AFJCY3R6.js +0 -3
- package/dist/chunk-APVMN2H7.cjs +0 -14
- package/dist/chunk-AXIRZAL7.js +0 -3
- package/dist/chunk-BHP6KBGK.js +0 -16
- package/dist/chunk-BOIEJ5I6.js +0 -109
- package/dist/chunk-DELRP3WY.js +0 -31
- package/dist/chunk-DFLNRC3B.cjs +0 -4
- package/dist/chunk-DS7OM4NX.cjs +0 -4
- package/dist/chunk-DURCSSLV.js +0 -3
- package/dist/chunk-EBMELFCF.js +0 -12
- package/dist/chunk-ELHJY5WG.cjs +0 -34
- package/dist/chunk-FANQC345.cjs +0 -116
- package/dist/chunk-GC3BRYAK.cjs +0 -13
- package/dist/chunk-GIE6OE3X.js +0 -3
- package/dist/chunk-GV3S7ZR3.cjs +0 -34
- package/dist/chunk-HJW7OH6E.js +0 -3
- package/dist/chunk-IHUNA3MO.cjs +0 -4
- package/dist/chunk-KMLFL4CW.js +0 -14
- package/dist/chunk-L3DAMAEC.js +0 -21
- package/dist/chunk-LC6FLEJS.cjs +0 -12
- package/dist/chunk-LO77RPRV.js +0 -16
- package/dist/chunk-MAEKW52U.js +0 -31
- package/dist/chunk-MXJWCZDP.cjs +0 -12
- package/dist/chunk-NGKWITCO.js +0 -9
- package/dist/chunk-OC7CCD5M.cjs +0 -19
- package/dist/chunk-OYASPHNL.js +0 -3
- package/dist/chunk-P4BOYWXT.js +0 -3570
- package/dist/chunk-PJRHRDLS.cjs +0 -3602
- package/dist/chunk-PK6SKIKE.cjs +0 -8
- package/dist/chunk-Q7EJVZVI.cjs +0 -4
- package/dist/chunk-RBRFT2R6.js +0 -9
- package/dist/chunk-RU6BHTIP.cjs +0 -24
- package/dist/chunk-SIZKRND7.js +0 -12
- package/dist/chunk-SNARILEC.cjs +0 -24
- package/dist/chunk-SY7N6FC3.js +0 -9
- package/dist/chunk-TLHFXGYV.js +0 -3
- package/dist/chunk-UZQYBO6Z.cjs +0 -52
- package/dist/chunk-V5D5NVV7.cjs +0 -42
- package/dist/chunk-V7LXFIGK.js +0 -199
- package/dist/chunk-VNRXLY2T.js +0 -3
- package/dist/chunk-VQCQRLGM.cjs +0 -4
- package/dist/chunk-WCTOTE3T.cjs +0 -201
- package/dist/chunk-WD4363UW.cjs +0 -12
- package/dist/chunk-XBF43VLE.cjs +0 -4
- package/dist/chunk-XZO6ZJQP.cjs +0 -4
- package/dist/chunk-YIWHO6SW.cjs +0 -14
- package/dist/chunk-YZCTXGFH.js +0 -11
- package/dist/chunk-Z5H7LD6W.js +0 -3
- package/dist/chunk-ZP5QLZQ2.js +0 -21
- package/dist/chunk-ZQ7U35QZ.js +0 -9
- package/dist/define-config.cjs +0 -13
- package/dist/define-config.d.cts +0 -50
- package/dist/define-config.d.ts +0 -50
- package/dist/define-config.js +0 -4
- package/dist/esbuild.d.ts +0 -57
- package/dist/esbuild.js +0 -10
- package/dist/extend-plugin.cjs +0 -13
- package/dist/extend-plugin.d.cts +0 -48
- package/dist/extend-plugin.d.ts +0 -48
- package/dist/extend-plugin.js +0 -4
- package/dist/farm.d.ts +0 -57
- package/dist/farm.js +0 -14
- package/dist/hooks-Wrj1dKJ9.d.cts +0 -28
- package/dist/hooks-q1Az_C64.d.ts +0 -28
- package/dist/index.d.ts +0 -65
- package/dist/index.js +0 -40
- package/dist/internal/api.cjs +0 -16
- package/dist/internal/api.cjs.map +0 -1
- package/dist/internal/api.d.cts +0 -192
- package/dist/internal/api.d.ts +0 -192
- package/dist/internal/api.js +0 -7
- package/dist/internal/api.js.map +0 -1
- package/dist/lib/build/esbuild.cjs +0 -22
- package/dist/lib/build/esbuild.cjs.map +0 -1
- package/dist/lib/build/esbuild.d.cts +0 -51
- package/dist/lib/build/esbuild.d.ts +0 -51
- package/dist/lib/build/esbuild.js +0 -5
- package/dist/lib/build/esbuild.js.map +0 -1
- package/dist/lib/build/index.cjs +0 -82
- package/dist/lib/build/index.cjs.map +0 -1
- package/dist/lib/build/index.d.cts +0 -41
- package/dist/lib/build/index.d.ts +0 -41
- package/dist/lib/build/index.js +0 -13
- package/dist/lib/build/index.js.map +0 -1
- package/dist/lib/build/rolldown.cjs +0 -14
- package/dist/lib/build/rolldown.cjs.map +0 -1
- package/dist/lib/build/rolldown.d.cts +0 -42
- package/dist/lib/build/rolldown.d.ts +0 -42
- package/dist/lib/build/rolldown.js +0 -5
- package/dist/lib/build/rolldown.js.map +0 -1
- package/dist/lib/build/rollup.cjs +0 -17
- package/dist/lib/build/rollup.cjs.map +0 -1
- package/dist/lib/build/rollup.d.cts +0 -49
- package/dist/lib/build/rollup.d.ts +0 -49
- package/dist/lib/build/rollup.js +0 -4
- package/dist/lib/build/rollup.js.map +0 -1
- package/dist/lib/build/rspack.cjs +0 -13
- package/dist/lib/build/rspack.cjs.map +0 -1
- package/dist/lib/build/rspack.d.cts +0 -42
- package/dist/lib/build/rspack.d.ts +0 -42
- package/dist/lib/build/rspack.js +0 -4
- package/dist/lib/build/rspack.js.map +0 -1
- package/dist/lib/build/tsup.cjs +0 -23
- package/dist/lib/build/tsup.cjs.map +0 -1
- package/dist/lib/build/tsup.d.cts +0 -51
- package/dist/lib/build/tsup.d.ts +0 -51
- package/dist/lib/build/tsup.js +0 -6
- package/dist/lib/build/tsup.js.map +0 -1
- package/dist/lib/build/unbuild.cjs +0 -23
- package/dist/lib/build/unbuild.cjs.map +0 -1
- package/dist/lib/build/unbuild.d.cts +0 -63
- package/dist/lib/build/unbuild.d.ts +0 -63
- package/dist/lib/build/unbuild.js +0 -6
- package/dist/lib/build/unbuild.js.map +0 -1
- package/dist/lib/build/vite.cjs +0 -19
- package/dist/lib/build/vite.cjs.map +0 -1
- package/dist/lib/build/vite.d.cts +0 -43
- package/dist/lib/build/vite.d.ts +0 -43
- package/dist/lib/build/vite.js +0 -6
- package/dist/lib/build/vite.js.map +0 -1
- package/dist/lib/build/webpack.cjs +0 -13
- package/dist/lib/build/webpack.cjs.map +0 -1
- package/dist/lib/build/webpack.d.cts +0 -42
- package/dist/lib/build/webpack.d.ts +0 -42
- package/dist/lib/build/webpack.js +0 -4
- package/dist/lib/build/webpack.js.map +0 -1
- package/dist/lib/chunk-35EO5Y7R.js +0 -50
- package/dist/lib/chunk-35EO5Y7R.js.map +0 -1
- package/dist/lib/chunk-367E23MI.js +0 -48
- package/dist/lib/chunk-367E23MI.js.map +0 -1
- package/dist/lib/chunk-3GMJQ5G3.cjs +0 -4
- package/dist/lib/chunk-3GMJQ5G3.cjs.map +0 -1
- package/dist/lib/chunk-3I2YOM2E.js +0 -58
- package/dist/lib/chunk-3I2YOM2E.js.map +0 -1
- package/dist/lib/chunk-4BPHC6QQ.js +0 -3
- package/dist/lib/chunk-4BPHC6QQ.js.map +0 -1
- package/dist/lib/chunk-4XUVP2LL.cjs +0 -39
- package/dist/lib/chunk-4XUVP2LL.cjs.map +0 -1
- package/dist/lib/chunk-56LQSSQ3.js +0 -62
- package/dist/lib/chunk-56LQSSQ3.js.map +0 -1
- package/dist/lib/chunk-5PNLONNN.cjs +0 -30
- package/dist/lib/chunk-5PNLONNN.cjs.map +0 -1
- package/dist/lib/chunk-62ZJYXT3.cjs +0 -54
- package/dist/lib/chunk-62ZJYXT3.cjs.map +0 -1
- package/dist/lib/chunk-632PWWU7.cjs +0 -57
- package/dist/lib/chunk-632PWWU7.cjs.map +0 -1
- package/dist/lib/chunk-6BRTJXZ2.js +0 -3333
- package/dist/lib/chunk-6BRTJXZ2.js.map +0 -1
- package/dist/lib/chunk-6IJTWIVJ.cjs +0 -107
- package/dist/lib/chunk-6IJTWIVJ.cjs.map +0 -1
- package/dist/lib/chunk-7EAV6Q7B.cjs +0 -78
- package/dist/lib/chunk-7EAV6Q7B.cjs.map +0 -1
- package/dist/lib/chunk-7LLECRBP.cjs +0 -41
- package/dist/lib/chunk-7LLECRBP.cjs.map +0 -1
- package/dist/lib/chunk-7QVYU63E.js +0 -6
- package/dist/lib/chunk-7QVYU63E.js.map +0 -1
- package/dist/lib/chunk-7R23HVGQ.js +0 -27
- package/dist/lib/chunk-7R23HVGQ.js.map +0 -1
- package/dist/lib/chunk-BEKLDCTV.cjs +0 -95
- package/dist/lib/chunk-BEKLDCTV.cjs.map +0 -1
- package/dist/lib/chunk-BW3VFCTS.cjs +0 -110
- package/dist/lib/chunk-BW3VFCTS.cjs.map +0 -1
- package/dist/lib/chunk-CAPN4FSS.js +0 -152
- package/dist/lib/chunk-CAPN4FSS.js.map +0 -1
- package/dist/lib/chunk-ESYYL5UH.js +0 -105
- package/dist/lib/chunk-ESYYL5UH.js.map +0 -1
- package/dist/lib/chunk-GJNFAFKR.cjs +0 -66
- package/dist/lib/chunk-GJNFAFKR.cjs.map +0 -1
- package/dist/lib/chunk-GWYTWFZE.cjs +0 -72
- package/dist/lib/chunk-GWYTWFZE.cjs.map +0 -1
- package/dist/lib/chunk-HJWJNSSZ.js +0 -3
- package/dist/lib/chunk-HJWJNSSZ.js.map +0 -1
- package/dist/lib/chunk-HQ6TGY34.js +0 -27
- package/dist/lib/chunk-HQ6TGY34.js.map +0 -1
- package/dist/lib/chunk-IK3ABDPP.cjs +0 -64
- package/dist/lib/chunk-IK3ABDPP.cjs.map +0 -1
- package/dist/lib/chunk-JTUL3477.cjs +0 -137
- package/dist/lib/chunk-JTUL3477.cjs.map +0 -1
- package/dist/lib/chunk-KOCDKJDJ.js +0 -96
- package/dist/lib/chunk-KOCDKJDJ.js.map +0 -1
- package/dist/lib/chunk-KSBESEOF.js +0 -169
- package/dist/lib/chunk-KSBESEOF.js.map +0 -1
- package/dist/lib/chunk-LBMMBFQE.js +0 -65
- package/dist/lib/chunk-LBMMBFQE.js.map +0 -1
- package/dist/lib/chunk-LEIOWD2W.js +0 -28
- package/dist/lib/chunk-LEIOWD2W.js.map +0 -1
- package/dist/lib/chunk-LJZEN4HP.cjs +0 -110
- package/dist/lib/chunk-LJZEN4HP.cjs.map +0 -1
- package/dist/lib/chunk-LTVWU4J2.js +0 -47
- package/dist/lib/chunk-LTVWU4J2.js.map +0 -1
- package/dist/lib/chunk-LYD5OTBI.cjs +0 -3362
- package/dist/lib/chunk-LYD5OTBI.cjs.map +0 -1
- package/dist/lib/chunk-MAHHHINV.js +0 -67
- package/dist/lib/chunk-MAHHHINV.js.map +0 -1
- package/dist/lib/chunk-MFC7UJHT.cjs +0 -30
- package/dist/lib/chunk-MFC7UJHT.cjs.map +0 -1
- package/dist/lib/chunk-MGEZC2RV.cjs +0 -69
- package/dist/lib/chunk-MGEZC2RV.cjs.map +0 -1
- package/dist/lib/chunk-MVQSM5WM.cjs +0 -73
- package/dist/lib/chunk-MVQSM5WM.cjs.map +0 -1
- package/dist/lib/chunk-NANLYIUO.cjs +0 -70
- package/dist/lib/chunk-NANLYIUO.cjs.map +0 -1
- package/dist/lib/chunk-NE46WXNJ.js +0 -58
- package/dist/lib/chunk-NE46WXNJ.js.map +0 -1
- package/dist/lib/chunk-ODJBZ6PS.js +0 -39
- package/dist/lib/chunk-ODJBZ6PS.js.map +0 -1
- package/dist/lib/chunk-OF5IJ4WG.js +0 -65
- package/dist/lib/chunk-OF5IJ4WG.js.map +0 -1
- package/dist/lib/chunk-OO4BIM7N.js +0 -98
- package/dist/lib/chunk-OO4BIM7N.js.map +0 -1
- package/dist/lib/chunk-PEZXLKQD.cjs +0 -4
- package/dist/lib/chunk-PEZXLKQD.cjs.map +0 -1
- package/dist/lib/chunk-PK6SKIKE.cjs +0 -8
- package/dist/lib/chunk-PK6SKIKE.cjs.map +0 -1
- package/dist/lib/chunk-PXSRMP4E.js +0 -39
- package/dist/lib/chunk-PXSRMP4E.js.map +0 -1
- package/dist/lib/chunk-Q2L3FNJO.js +0 -120
- package/dist/lib/chunk-Q2L3FNJO.js.map +0 -1
- package/dist/lib/chunk-Q3KJZ3B5.js +0 -161
- package/dist/lib/chunk-Q3KJZ3B5.js.map +0 -1
- package/dist/lib/chunk-RK2VVGL6.cjs +0 -107
- package/dist/lib/chunk-RK2VVGL6.cjs.map +0 -1
- package/dist/lib/chunk-RLMEYZ5I.cjs +0 -167
- package/dist/lib/chunk-RLMEYZ5I.cjs.map +0 -1
- package/dist/lib/chunk-RQICHHZM.cjs +0 -29
- package/dist/lib/chunk-RQICHHZM.cjs.map +0 -1
- package/dist/lib/chunk-RXQWNSZX.js +0 -37
- package/dist/lib/chunk-RXQWNSZX.js.map +0 -1
- package/dist/lib/chunk-STAKGAWR.js +0 -86
- package/dist/lib/chunk-STAKGAWR.js.map +0 -1
- package/dist/lib/chunk-U36VZLW6.cjs +0 -172
- package/dist/lib/chunk-U36VZLW6.cjs.map +0 -1
- package/dist/lib/chunk-UGRFAVAJ.js +0 -93
- package/dist/lib/chunk-UGRFAVAJ.js.map +0 -1
- package/dist/lib/chunk-UQJWVRRE.cjs +0 -47
- package/dist/lib/chunk-UQJWVRRE.cjs.map +0 -1
- package/dist/lib/chunk-V2T4H24I.js +0 -156
- package/dist/lib/chunk-V2T4H24I.js.map +0 -1
- package/dist/lib/chunk-V5OY4ALI.cjs +0 -56
- package/dist/lib/chunk-V5OY4ALI.cjs.map +0 -1
- package/dist/lib/chunk-VJN72T2O.js +0 -50
- package/dist/lib/chunk-VJN72T2O.js.map +0 -1
- package/dist/lib/chunk-W4OMKQ7W.cjs +0 -128
- package/dist/lib/chunk-W4OMKQ7W.cjs.map +0 -1
- package/dist/lib/chunk-XGH6JWRO.js +0 -3
- package/dist/lib/chunk-XGH6JWRO.js.map +0 -1
- package/dist/lib/chunk-XQMVE2NH.cjs +0 -4
- package/dist/lib/chunk-XQMVE2NH.cjs.map +0 -1
- package/dist/lib/chunk-XZD7S5TU.cjs +0 -53
- package/dist/lib/chunk-XZD7S5TU.cjs.map +0 -1
- package/dist/lib/chunk-YBIWVB66.js +0 -76
- package/dist/lib/chunk-YBIWVB66.js.map +0 -1
- package/dist/lib/chunk-YF3YHK4X.js +0 -127
- package/dist/lib/chunk-YF3YHK4X.js.map +0 -1
- package/dist/lib/chunk-YVDJCVE5.cjs +0 -160
- package/dist/lib/chunk-YVDJCVE5.cjs.map +0 -1
- package/dist/lib/chunk-ZP7PDTVE.cjs +0 -167
- package/dist/lib/chunk-ZP7PDTVE.cjs.map +0 -1
- package/dist/lib/compiler-CuQLTmTB.d.cts +0 -32
- package/dist/lib/compiler-CuQLTmTB.d.ts +0 -32
- package/dist/lib/config-DnifzkPt.d.ts +0 -1474
- package/dist/lib/config-Ro14HmyO.d.cts +0 -1474
- package/dist/lib/config-file.cjs +0 -17
- package/dist/lib/config-file.cjs.map +0 -1
- package/dist/lib/config-file.d.cts +0 -57
- package/dist/lib/config-file.d.ts +0 -57
- package/dist/lib/config-file.js +0 -4
- package/dist/lib/config-file.js.map +0 -1
- package/dist/lib/create-program.cjs +0 -13
- package/dist/lib/create-program.cjs.map +0 -1
- package/dist/lib/create-program.d.cts +0 -42
- package/dist/lib/create-program.d.ts +0 -42
- package/dist/lib/create-program.js +0 -4
- package/dist/lib/create-program.js.map +0 -1
- package/dist/lib/entry.cjs +0 -41
- package/dist/lib/entry.cjs.map +0 -1
- package/dist/lib/entry.d.cts +0 -69
- package/dist/lib/entry.d.ts +0 -69
- package/dist/lib/entry.js +0 -4
- package/dist/lib/entry.js.map +0 -1
- package/dist/lib/hooks-B6Ow5MtE.d.ts +0 -28
- package/dist/lib/hooks-CM-BbMzz.d.cts +0 -28
- package/dist/lib/index.cjs +0 -281
- package/dist/lib/index.cjs.map +0 -1
- package/dist/lib/index.d.cts +0 -57
- package/dist/lib/index.d.ts +0 -57
- package/dist/lib/index.js +0 -28
- package/dist/lib/index.js.map +0 -1
- package/dist/lib/logger.cjs +0 -17
- package/dist/lib/logger.cjs.map +0 -1
- package/dist/lib/logger.d.cts +0 -51
- package/dist/lib/logger.d.ts +0 -51
- package/dist/lib/logger.js +0 -4
- package/dist/lib/logger.js.map +0 -1
- package/dist/lib/tsconfig-Bz-CiFqD.d.cts +0 -68
- package/dist/lib/tsconfig-Bz-CiFqD.d.ts +0 -68
- package/dist/lib/typescript/compiler-host.cjs +0 -166
- package/dist/lib/typescript/compiler-host.cjs.map +0 -1
- package/dist/lib/typescript/compiler-host.d.cts +0 -64
- package/dist/lib/typescript/compiler-host.d.ts +0 -64
- package/dist/lib/typescript/compiler-host.js +0 -158
- package/dist/lib/typescript/compiler-host.js.map +0 -1
- package/dist/lib/typescript/import-transformer.cjs +0 -51
- package/dist/lib/typescript/import-transformer.cjs.map +0 -1
- package/dist/lib/typescript/import-transformer.d.cts +0 -36
- package/dist/lib/typescript/import-transformer.d.ts +0 -36
- package/dist/lib/typescript/import-transformer.js +0 -49
- package/dist/lib/typescript/import-transformer.js.map +0 -1
- package/dist/lib/typescript/index.cjs +0 -60
- package/dist/lib/typescript/index.cjs.map +0 -1
- package/dist/lib/typescript/index.d.cts +0 -35
- package/dist/lib/typescript/index.d.ts +0 -35
- package/dist/lib/typescript/index.js +0 -7
- package/dist/lib/typescript/index.js.map +0 -1
- package/dist/lib/typescript/isolated-decl.cjs +0 -13
- package/dist/lib/typescript/isolated-decl.cjs.map +0 -1
- package/dist/lib/typescript/isolated-decl.d.cts +0 -11
- package/dist/lib/typescript/isolated-decl.d.ts +0 -11
- package/dist/lib/typescript/isolated-decl.js +0 -4
- package/dist/lib/typescript/isolated-decl.js.map +0 -1
- package/dist/lib/typescript/program.cjs +0 -29
- package/dist/lib/typescript/program.cjs.map +0 -1
- package/dist/lib/typescript/program.d.cts +0 -69
- package/dist/lib/typescript/program.d.ts +0 -69
- package/dist/lib/typescript/program.js +0 -4
- package/dist/lib/typescript/program.js.map +0 -1
- package/dist/lib/typescript/tsconfig.cjs +0 -33
- package/dist/lib/typescript/tsconfig.cjs.map +0 -1
- package/dist/lib/typescript/tsconfig.d.cts +0 -61
- package/dist/lib/typescript/tsconfig.d.ts +0 -61
- package/dist/lib/typescript/tsconfig.js +0 -4
- package/dist/lib/typescript/tsconfig.js.map +0 -1
- package/dist/lib/unplugin/factory.cjs +0 -23
- package/dist/lib/unplugin/factory.cjs.map +0 -1
- package/dist/lib/unplugin/factory.d.cts +0 -200
- package/dist/lib/unplugin/factory.d.ts +0 -200
- package/dist/lib/unplugin/factory.js +0 -14
- package/dist/lib/unplugin/factory.js.map +0 -1
- package/dist/lib/unplugin/index.cjs +0 -33
- package/dist/lib/unplugin/index.cjs.map +0 -1
- package/dist/lib/unplugin/index.d.cts +0 -36
- package/dist/lib/unplugin/index.d.ts +0 -36
- package/dist/lib/unplugin/index.js +0 -16
- package/dist/lib/unplugin/index.js.map +0 -1
- package/dist/lib/unplugin/plugin.cjs +0 -16
- package/dist/lib/unplugin/plugin.cjs.map +0 -1
- package/dist/lib/unplugin/plugin.d.cts +0 -55
- package/dist/lib/unplugin/plugin.d.ts +0 -55
- package/dist/lib/unplugin/plugin.js +0 -7
- package/dist/lib/unplugin/plugin.js.map +0 -1
- package/dist/lib/unplugin/resolve-id.cjs +0 -13
- package/dist/lib/unplugin/resolve-id.cjs.map +0 -1
- package/dist/lib/unplugin/resolve-id.d.cts +0 -60
- package/dist/lib/unplugin/resolve-id.d.ts +0 -60
- package/dist/lib/unplugin/resolve-id.js +0 -4
- package/dist/lib/unplugin/resolve-id.js.map +0 -1
- package/dist/lib/utilities/bundle.cjs +0 -16
- package/dist/lib/utilities/bundle.cjs.map +0 -1
- package/dist/lib/utilities/bundle.d.cts +0 -44
- package/dist/lib/utilities/bundle.d.ts +0 -44
- package/dist/lib/utilities/bundle.js +0 -7
- package/dist/lib/utilities/bundle.js.map +0 -1
- package/dist/lib/utilities/cache.cjs +0 -18
- package/dist/lib/utilities/cache.cjs.map +0 -1
- package/dist/lib/utilities/cache.d.cts +0 -7
- package/dist/lib/utilities/cache.d.ts +0 -7
- package/dist/lib/utilities/cache.js +0 -5
- package/dist/lib/utilities/cache.js.map +0 -1
- package/dist/lib/utilities/file-header.cjs +0 -17
- package/dist/lib/utilities/file-header.cjs.map +0 -1
- package/dist/lib/utilities/file-header.d.cts +0 -42
- package/dist/lib/utilities/file-header.d.ts +0 -42
- package/dist/lib/utilities/file-header.js +0 -4
- package/dist/lib/utilities/file-header.js.map +0 -1
- package/dist/lib/utilities/index.cjs +0 -159
- package/dist/lib/utilities/index.cjs.map +0 -1
- package/dist/lib/utilities/index.d.cts +0 -45
- package/dist/lib/utilities/index.d.ts +0 -45
- package/dist/lib/utilities/index.js +0 -18
- package/dist/lib/utilities/index.js.map +0 -1
- package/dist/lib/utilities/meta.cjs +0 -37
- package/dist/lib/utilities/meta.cjs.map +0 -1
- package/dist/lib/utilities/meta.d.cts +0 -68
- package/dist/lib/utilities/meta.d.ts +0 -68
- package/dist/lib/utilities/meta.js +0 -4
- package/dist/lib/utilities/meta.js.map +0 -1
- package/dist/lib/utilities/plugin-helpers.cjs +0 -61
- package/dist/lib/utilities/plugin-helpers.cjs.map +0 -1
- package/dist/lib/utilities/plugin-helpers.d.cts +0 -153
- package/dist/lib/utilities/plugin-helpers.d.ts +0 -153
- package/dist/lib/utilities/plugin-helpers.js +0 -4
- package/dist/lib/utilities/plugin-helpers.js.map +0 -1
- package/dist/lib/utilities/resolve-path.cjs +0 -13
- package/dist/lib/utilities/resolve-path.cjs.map +0 -1
- package/dist/lib/utilities/resolve-path.d.cts +0 -43
- package/dist/lib/utilities/resolve-path.d.ts +0 -43
- package/dist/lib/utilities/resolve-path.js +0 -4
- package/dist/lib/utilities/resolve-path.js.map +0 -1
- package/dist/lib/utilities/resolve.cjs +0 -17
- package/dist/lib/utilities/resolve.cjs.map +0 -1
- package/dist/lib/utilities/resolve.d.cts +0 -44
- package/dist/lib/utilities/resolve.d.ts +0 -44
- package/dist/lib/utilities/resolve.js +0 -8
- package/dist/lib/utilities/resolve.js.map +0 -1
- package/dist/lib/utilities/source-file.cjs +0 -21
- package/dist/lib/utilities/source-file.cjs.map +0 -1
- package/dist/lib/utilities/source-file.d.cts +0 -28
- package/dist/lib/utilities/source-file.d.ts +0 -28
- package/dist/lib/utilities/source-file.js +0 -4
- package/dist/lib/utilities/source-file.js.map +0 -1
- package/dist/lib/utilities/source-map.cjs +0 -13
- package/dist/lib/utilities/source-map.cjs.map +0 -1
- package/dist/lib/utilities/source-map.d.cts +0 -14
- package/dist/lib/utilities/source-map.d.ts +0 -14
- package/dist/lib/utilities/source-map.js +0 -4
- package/dist/lib/utilities/source-map.js.map +0 -1
- package/dist/lib/utilities/worker.cjs +0 -18
- package/dist/lib/utilities/worker.cjs.map +0 -1
- package/dist/lib/utilities/worker.d.cts +0 -58
- package/dist/lib/utilities/worker.d.ts +0 -58
- package/dist/lib/utilities/worker.js +0 -5
- package/dist/lib/utilities/worker.js.map +0 -1
- package/dist/lib/utilities/write-file.cjs +0 -13
- package/dist/lib/utilities/write-file.cjs.map +0 -1
- package/dist/lib/utilities/write-file.d.cts +0 -44
- package/dist/lib/utilities/write-file.d.ts +0 -44
- package/dist/lib/utilities/write-file.js +0 -4
- package/dist/lib/utilities/write-file.js.map +0 -1
- package/dist/next.js +0 -10
- package/dist/nuxt.d.ts +0 -20
- package/dist/nuxt.js +0 -12
- package/dist/resolved-DtY60yLh.d.cts +0 -1351
- package/dist/resolved-wPXZS7aW.d.ts +0 -1351
- package/dist/rolldown.d.ts +0 -57
- package/dist/rolldown.js +0 -9
- package/dist/rollup.d.ts +0 -57
- package/dist/rollup.js +0 -9
- package/dist/rspack.d.ts +0 -57
- package/dist/rspack.js +0 -9
- package/dist/tsup.js +0 -11
- package/dist/types/babel.cjs +0 -6
- package/dist/types/babel.cjs.map +0 -1
- package/dist/types/babel.d.cts +0 -38
- package/dist/types/babel.d.ts +0 -38
- package/dist/types/babel.js +0 -3
- package/dist/types/babel.js.map +0 -1
- package/dist/types/build.cjs +0 -6
- package/dist/types/build.cjs.map +0 -1
- package/dist/types/build.d.cts +0 -111
- package/dist/types/build.d.ts +0 -111
- package/dist/types/build.js +0 -3
- package/dist/types/build.js.map +0 -1
- package/dist/types/commands.cjs +0 -13
- package/dist/types/commands.cjs.map +0 -1
- package/dist/types/commands.d.cts +0 -38
- package/dist/types/commands.d.ts +0 -38
- package/dist/types/commands.js +0 -4
- package/dist/types/commands.js.map +0 -1
- package/dist/types/compiler.cjs +0 -6
- package/dist/types/compiler.cjs.map +0 -1
- package/dist/types/compiler.d.cts +0 -38
- package/dist/types/compiler.d.ts +0 -38
- package/dist/types/compiler.js +0 -3
- package/dist/types/compiler.js.map +0 -1
- package/dist/types/config.cjs +0 -6
- package/dist/types/config.cjs.map +0 -1
- package/dist/types/config.d.cts +0 -38
- package/dist/types/config.d.ts +0 -38
- package/dist/types/config.js +0 -3
- package/dist/types/config.js.map +0 -1
- package/dist/types/context.cjs +0 -13
- package/dist/types/context.cjs.map +0 -1
- package/dist/types/context.d.cts +0 -38
- package/dist/types/context.d.ts +0 -38
- package/dist/types/context.js +0 -4
- package/dist/types/context.js.map +0 -1
- package/dist/types/hooks.cjs +0 -6
- package/dist/types/hooks.cjs.map +0 -1
- package/dist/types/hooks.d.cts +0 -38
- package/dist/types/hooks.d.ts +0 -38
- package/dist/types/hooks.js +0 -3
- package/dist/types/hooks.js.map +0 -1
- package/dist/types/index.cjs +0 -58
- package/dist/types/index.cjs.map +0 -1
- package/dist/types/index.d.cts +0 -42
- package/dist/types/index.d.ts +0 -42
- package/dist/types/index.js +0 -17
- package/dist/types/index.js.map +0 -1
- package/dist/types/internal.cjs +0 -4
- package/dist/types/internal.cjs.map +0 -1
- package/dist/types/internal.d.cts +0 -61
- package/dist/types/internal.d.ts +0 -61
- package/dist/types/internal.js +0 -3
- package/dist/types/internal.js.map +0 -1
- package/dist/types/plugin.cjs +0 -13
- package/dist/types/plugin.cjs.map +0 -1
- package/dist/types/plugin.d.cts +0 -38
- package/dist/types/plugin.d.ts +0 -38
- package/dist/types/plugin.js +0 -4
- package/dist/types/plugin.js.map +0 -1
- package/dist/types/resolved.cjs +0 -6
- package/dist/types/resolved.cjs.map +0 -1
- package/dist/types/resolved.d.cts +0 -38
- package/dist/types/resolved.d.ts +0 -38
- package/dist/types/resolved.js +0 -3
- package/dist/types/resolved.js.map +0 -1
- package/dist/types/tsconfig.cjs +0 -6
- package/dist/types/tsconfig.cjs.map +0 -1
- package/dist/types/tsconfig.d.cts +0 -75
- package/dist/types/tsconfig.d.ts +0 -75
- package/dist/types/tsconfig.js +0 -3
- package/dist/types/tsconfig.js.map +0 -1
- package/dist/types/typedoc.cjs +0 -6
- package/dist/types/typedoc.cjs.map +0 -1
- package/dist/types/typedoc.d.cts +0 -25
- package/dist/types/typedoc.d.ts +0 -25
- package/dist/types/typedoc.js +0 -3
- package/dist/types/typedoc.js.map +0 -1
- package/dist/types/unplugin.cjs +0 -6
- package/dist/types/unplugin.cjs.map +0 -1
- package/dist/types/unplugin.d.cts +0 -54
- package/dist/types/unplugin.d.ts +0 -54
- package/dist/types/unplugin.js +0 -3
- package/dist/types/unplugin.js.map +0 -1
- package/dist/types/vfs.cjs +0 -33
- package/dist/types/vfs.cjs.map +0 -1
- package/dist/types/vfs.d.cts +0 -408
- package/dist/types/vfs.d.ts +0 -408
- package/dist/types/vfs.js +0 -4
- package/dist/types/vfs.js.map +0 -1
- package/dist/unloader.d.ts +0 -56
- package/dist/unloader.js +0 -9
- package/dist/unplugin.d.ts +0 -77
- package/dist/unplugin.js +0 -21
- package/dist/vite.d.ts +0 -57
- package/dist/vite.js +0 -10
- package/dist/webpack.d.ts +0 -57
- package/dist/webpack.js +0 -9
package/dist/lib/index.cjs
DELETED
|
@@ -1,281 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
require('./chunk-XQMVE2NH.cjs');
|
|
4
|
-
var chunkIK3ABDPP_cjs = require('./chunk-IK3ABDPP.cjs');
|
|
5
|
-
var chunkU36VZLW6_cjs = require('./chunk-U36VZLW6.cjs');
|
|
6
|
-
var chunkNANLYIUO_cjs = require('./chunk-NANLYIUO.cjs');
|
|
7
|
-
var chunk5PNLONNN_cjs = require('./chunk-5PNLONNN.cjs');
|
|
8
|
-
var chunk7LLECRBP_cjs = require('./chunk-7LLECRBP.cjs');
|
|
9
|
-
var chunk4XUVP2LL_cjs = require('./chunk-4XUVP2LL.cjs');
|
|
10
|
-
require('./chunk-PEZXLKQD.cjs');
|
|
11
|
-
var chunk62ZJYXT3_cjs = require('./chunk-62ZJYXT3.cjs');
|
|
12
|
-
require('./chunk-3GMJQ5G3.cjs');
|
|
13
|
-
var chunkLYD5OTBI_cjs = require('./chunk-LYD5OTBI.cjs');
|
|
14
|
-
var chunkRQICHHZM_cjs = require('./chunk-RQICHHZM.cjs');
|
|
15
|
-
var chunkMFC7UJHT_cjs = require('./chunk-MFC7UJHT.cjs');
|
|
16
|
-
var chunkBW3VFCTS_cjs = require('./chunk-BW3VFCTS.cjs');
|
|
17
|
-
var chunkRK2VVGL6_cjs = require('./chunk-RK2VVGL6.cjs');
|
|
18
|
-
var chunkZP7PDTVE_cjs = require('./chunk-ZP7PDTVE.cjs');
|
|
19
|
-
var chunk7EAV6Q7B_cjs = require('./chunk-7EAV6Q7B.cjs');
|
|
20
|
-
var chunkRLMEYZ5I_cjs = require('./chunk-RLMEYZ5I.cjs');
|
|
21
|
-
var chunkLJZEN4HP_cjs = require('./chunk-LJZEN4HP.cjs');
|
|
22
|
-
var chunkMGEZC2RV_cjs = require('./chunk-MGEZC2RV.cjs');
|
|
23
|
-
var chunk6IJTWIVJ_cjs = require('./chunk-6IJTWIVJ.cjs');
|
|
24
|
-
var chunk632PWWU7_cjs = require('./chunk-632PWWU7.cjs');
|
|
25
|
-
var chunkUQJWVRRE_cjs = require('./chunk-UQJWVRRE.cjs');
|
|
26
|
-
require('./chunk-GJNFAFKR.cjs');
|
|
27
|
-
var chunkBEKLDCTV_cjs = require('./chunk-BEKLDCTV.cjs');
|
|
28
|
-
require('./chunk-PK6SKIKE.cjs');
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
Object.defineProperty(exports, "generateSourceMap", {
|
|
33
|
-
enumerable: true,
|
|
34
|
-
get: function () { return chunkIK3ABDPP_cjs.generateSourceMap; }
|
|
35
|
-
});
|
|
36
|
-
Object.defineProperty(exports, "Worker", {
|
|
37
|
-
enumerable: true,
|
|
38
|
-
get: function () { return chunkU36VZLW6_cjs.Worker; }
|
|
39
|
-
});
|
|
40
|
-
Object.defineProperty(exports, "createWorker", {
|
|
41
|
-
enumerable: true,
|
|
42
|
-
get: function () { return chunkU36VZLW6_cjs.createWorker; }
|
|
43
|
-
});
|
|
44
|
-
Object.defineProperty(exports, "getCache", {
|
|
45
|
-
enumerable: true,
|
|
46
|
-
get: function () { return chunkNANLYIUO_cjs.getCache; }
|
|
47
|
-
});
|
|
48
|
-
Object.defineProperty(exports, "setCache", {
|
|
49
|
-
enumerable: true,
|
|
50
|
-
get: function () { return chunkNANLYIUO_cjs.setCache; }
|
|
51
|
-
});
|
|
52
|
-
Object.defineProperty(exports, "resolve", {
|
|
53
|
-
enumerable: true,
|
|
54
|
-
get: function () { return chunk5PNLONNN_cjs.resolve; }
|
|
55
|
-
});
|
|
56
|
-
Object.defineProperty(exports, "bundle", {
|
|
57
|
-
enumerable: true,
|
|
58
|
-
get: function () { return chunk7LLECRBP_cjs.bundle; }
|
|
59
|
-
});
|
|
60
|
-
Object.defineProperty(exports, "resolvePath", {
|
|
61
|
-
enumerable: true,
|
|
62
|
-
get: function () { return chunk4XUVP2LL_cjs.resolvePath; }
|
|
63
|
-
});
|
|
64
|
-
Object.defineProperty(exports, "isolatedDeclarations", {
|
|
65
|
-
enumerable: true,
|
|
66
|
-
get: function () { return chunk62ZJYXT3_cjs.isolatedDeclarations; }
|
|
67
|
-
});
|
|
68
|
-
Object.defineProperty(exports, "createUnpluginFactory", {
|
|
69
|
-
enumerable: true,
|
|
70
|
-
get: function () { return chunkLYD5OTBI_cjs.createUnpluginFactory; }
|
|
71
|
-
});
|
|
72
|
-
Object.defineProperty(exports, "writeFile", {
|
|
73
|
-
enumerable: true,
|
|
74
|
-
get: function () { return chunkRQICHHZM_cjs.writeFile; }
|
|
75
|
-
});
|
|
76
|
-
Object.defineProperty(exports, "getBaseFileHeader", {
|
|
77
|
-
enumerable: true,
|
|
78
|
-
get: function () { return chunkMFC7UJHT_cjs.getBaseFileHeader; }
|
|
79
|
-
});
|
|
80
|
-
Object.defineProperty(exports, "getFileHeader", {
|
|
81
|
-
enumerable: true,
|
|
82
|
-
get: function () { return chunkMFC7UJHT_cjs.getFileHeader; }
|
|
83
|
-
});
|
|
84
|
-
Object.defineProperty(exports, "CACHE_HASH_LENGTH", {
|
|
85
|
-
enumerable: true,
|
|
86
|
-
get: function () { return chunkBW3VFCTS_cjs.CACHE_HASH_LENGTH; }
|
|
87
|
-
});
|
|
88
|
-
Object.defineProperty(exports, "PROJECT_ROOT_HASH_LENGTH", {
|
|
89
|
-
enumerable: true,
|
|
90
|
-
get: function () { return chunkBW3VFCTS_cjs.PROJECT_ROOT_HASH_LENGTH; }
|
|
91
|
-
});
|
|
92
|
-
Object.defineProperty(exports, "discoverTemplates", {
|
|
93
|
-
enumerable: true,
|
|
94
|
-
get: function () { return chunkBW3VFCTS_cjs.discoverTemplates; }
|
|
95
|
-
});
|
|
96
|
-
Object.defineProperty(exports, "getChecksum", {
|
|
97
|
-
enumerable: true,
|
|
98
|
-
get: function () { return chunkBW3VFCTS_cjs.getChecksum; }
|
|
99
|
-
});
|
|
100
|
-
Object.defineProperty(exports, "getPersistedMeta", {
|
|
101
|
-
enumerable: true,
|
|
102
|
-
get: function () { return chunkBW3VFCTS_cjs.getPersistedMeta; }
|
|
103
|
-
});
|
|
104
|
-
Object.defineProperty(exports, "getPrefixedProjectRootHash", {
|
|
105
|
-
enumerable: true,
|
|
106
|
-
get: function () { return chunkBW3VFCTS_cjs.getPrefixedProjectRootHash; }
|
|
107
|
-
});
|
|
108
|
-
Object.defineProperty(exports, "writeMetaFile", {
|
|
109
|
-
enumerable: true,
|
|
110
|
-
get: function () { return chunkBW3VFCTS_cjs.writeMetaFile; }
|
|
111
|
-
});
|
|
112
|
-
Object.defineProperty(exports, "addPluginHook", {
|
|
113
|
-
enumerable: true,
|
|
114
|
-
get: function () { return chunkRK2VVGL6_cjs.addPluginHook; }
|
|
115
|
-
});
|
|
116
|
-
Object.defineProperty(exports, "checkDedupe", {
|
|
117
|
-
enumerable: true,
|
|
118
|
-
get: function () { return chunkRK2VVGL6_cjs.checkDedupe; }
|
|
119
|
-
});
|
|
120
|
-
Object.defineProperty(exports, "extractPluginHook", {
|
|
121
|
-
enumerable: true,
|
|
122
|
-
get: function () { return chunkRK2VVGL6_cjs.extractPluginHook; }
|
|
123
|
-
});
|
|
124
|
-
Object.defineProperty(exports, "getHookHandler", {
|
|
125
|
-
enumerable: true,
|
|
126
|
-
get: function () { return chunkRK2VVGL6_cjs.getHookHandler; }
|
|
127
|
-
});
|
|
128
|
-
Object.defineProperty(exports, "isHookExternal", {
|
|
129
|
-
enumerable: true,
|
|
130
|
-
get: function () { return chunkRK2VVGL6_cjs.isHookExternal; }
|
|
131
|
-
});
|
|
132
|
-
Object.defineProperty(exports, "isHookInternal", {
|
|
133
|
-
enumerable: true,
|
|
134
|
-
get: function () { return chunkRK2VVGL6_cjs.isHookInternal; }
|
|
135
|
-
});
|
|
136
|
-
Object.defineProperty(exports, "isPlugin", {
|
|
137
|
-
enumerable: true,
|
|
138
|
-
get: function () { return chunkRK2VVGL6_cjs.isPlugin; }
|
|
139
|
-
});
|
|
140
|
-
Object.defineProperty(exports, "isPluginConfig", {
|
|
141
|
-
enumerable: true,
|
|
142
|
-
get: function () { return chunkRK2VVGL6_cjs.isPluginConfig; }
|
|
143
|
-
});
|
|
144
|
-
Object.defineProperty(exports, "isPluginConfigObject", {
|
|
145
|
-
enumerable: true,
|
|
146
|
-
get: function () { return chunkRK2VVGL6_cjs.isPluginConfigObject; }
|
|
147
|
-
});
|
|
148
|
-
Object.defineProperty(exports, "isPluginConfigTuple", {
|
|
149
|
-
enumerable: true,
|
|
150
|
-
get: function () { return chunkRK2VVGL6_cjs.isPluginConfigTuple; }
|
|
151
|
-
});
|
|
152
|
-
Object.defineProperty(exports, "isPluginHook", {
|
|
153
|
-
enumerable: true,
|
|
154
|
-
get: function () { return chunkRK2VVGL6_cjs.isPluginHook; }
|
|
155
|
-
});
|
|
156
|
-
Object.defineProperty(exports, "isPluginHookFunction", {
|
|
157
|
-
enumerable: true,
|
|
158
|
-
get: function () { return chunkRK2VVGL6_cjs.isPluginHookFunction; }
|
|
159
|
-
});
|
|
160
|
-
Object.defineProperty(exports, "isPluginHookObject", {
|
|
161
|
-
enumerable: true,
|
|
162
|
-
get: function () { return chunkRK2VVGL6_cjs.isPluginHookObject; }
|
|
163
|
-
});
|
|
164
|
-
Object.defineProperty(exports, "createUnplugin", {
|
|
165
|
-
enumerable: true,
|
|
166
|
-
get: function () { return chunkZP7PDTVE_cjs.createUnplugin; }
|
|
167
|
-
});
|
|
168
|
-
Object.defineProperty(exports, "handleResolveId", {
|
|
169
|
-
enumerable: true,
|
|
170
|
-
get: function () { return chunk7EAV6Q7B_cjs.handleResolveId; }
|
|
171
|
-
});
|
|
172
|
-
Object.defineProperty(exports, "SourcesMap", {
|
|
173
|
-
enumerable: true,
|
|
174
|
-
get: function () { return chunkRLMEYZ5I_cjs.SourcesMap; }
|
|
175
|
-
});
|
|
176
|
-
Object.defineProperty(exports, "createVirtualCompilerHost", {
|
|
177
|
-
enumerable: true,
|
|
178
|
-
get: function () { return chunkRLMEYZ5I_cjs.createVirtualCompilerHost; }
|
|
179
|
-
});
|
|
180
|
-
Object.defineProperty(exports, "createVirtualProgram", {
|
|
181
|
-
enumerable: true,
|
|
182
|
-
get: function () { return chunkRLMEYZ5I_cjs.createVirtualProgram; }
|
|
183
|
-
});
|
|
184
|
-
Object.defineProperty(exports, "getDefaultCompilerOptions", {
|
|
185
|
-
enumerable: true,
|
|
186
|
-
get: function () { return chunkRLMEYZ5I_cjs.getDefaultCompilerOptions; }
|
|
187
|
-
});
|
|
188
|
-
Object.defineProperty(exports, "loadLibFiles", {
|
|
189
|
-
enumerable: true,
|
|
190
|
-
get: function () { return chunkRLMEYZ5I_cjs.loadLibFiles; }
|
|
191
|
-
});
|
|
192
|
-
Object.defineProperty(exports, "findIncludeMatch", {
|
|
193
|
-
enumerable: true,
|
|
194
|
-
get: function () { return chunkLJZEN4HP_cjs.findIncludeMatch; }
|
|
195
|
-
});
|
|
196
|
-
Object.defineProperty(exports, "findMatch", {
|
|
197
|
-
enumerable: true,
|
|
198
|
-
get: function () { return chunkLJZEN4HP_cjs.findMatch; }
|
|
199
|
-
});
|
|
200
|
-
Object.defineProperty(exports, "getParsedTypeScriptConfig", {
|
|
201
|
-
enumerable: true,
|
|
202
|
-
get: function () { return chunkLJZEN4HP_cjs.getParsedTypeScriptConfig; }
|
|
203
|
-
});
|
|
204
|
-
Object.defineProperty(exports, "getTsconfigFilePath", {
|
|
205
|
-
enumerable: true,
|
|
206
|
-
get: function () { return chunkLJZEN4HP_cjs.getTsconfigFilePath; }
|
|
207
|
-
});
|
|
208
|
-
Object.defineProperty(exports, "isIncludeMatchFound", {
|
|
209
|
-
enumerable: true,
|
|
210
|
-
get: function () { return chunkLJZEN4HP_cjs.isIncludeMatchFound; }
|
|
211
|
-
});
|
|
212
|
-
Object.defineProperty(exports, "isMatchFound", {
|
|
213
|
-
enumerable: true,
|
|
214
|
-
get: function () { return chunkLJZEN4HP_cjs.isMatchFound; }
|
|
215
|
-
});
|
|
216
|
-
Object.defineProperty(exports, "loadUserConfigFile", {
|
|
217
|
-
enumerable: true,
|
|
218
|
-
get: function () { return chunkMGEZC2RV_cjs.loadUserConfigFile; }
|
|
219
|
-
});
|
|
220
|
-
Object.defineProperty(exports, "loadWorkspaceConfig", {
|
|
221
|
-
enumerable: true,
|
|
222
|
-
get: function () { return chunkMGEZC2RV_cjs.loadWorkspaceConfig; }
|
|
223
|
-
});
|
|
224
|
-
Object.defineProperty(exports, "createProgram", {
|
|
225
|
-
enumerable: true,
|
|
226
|
-
get: function () { return chunk6IJTWIVJ_cjs.createProgram; }
|
|
227
|
-
});
|
|
228
|
-
Object.defineProperty(exports, "createLog", {
|
|
229
|
-
enumerable: true,
|
|
230
|
-
get: function () { return chunk632PWWU7_cjs.createLog; }
|
|
231
|
-
});
|
|
232
|
-
Object.defineProperty(exports, "extendLog", {
|
|
233
|
-
enumerable: true,
|
|
234
|
-
get: function () { return chunk632PWWU7_cjs.extendLog; }
|
|
235
|
-
});
|
|
236
|
-
Object.defineProperty(exports, "getMagicString", {
|
|
237
|
-
enumerable: true,
|
|
238
|
-
get: function () { return chunkUQJWVRRE_cjs.getMagicString; }
|
|
239
|
-
});
|
|
240
|
-
Object.defineProperty(exports, "getSourceFile", {
|
|
241
|
-
enumerable: true,
|
|
242
|
-
get: function () { return chunkUQJWVRRE_cjs.getSourceFile; }
|
|
243
|
-
});
|
|
244
|
-
Object.defineProperty(exports, "getString", {
|
|
245
|
-
enumerable: true,
|
|
246
|
-
get: function () { return chunkUQJWVRRE_cjs.getString; }
|
|
247
|
-
});
|
|
248
|
-
Object.defineProperty(exports, "getUniqueEntries", {
|
|
249
|
-
enumerable: true,
|
|
250
|
-
get: function () { return chunkBEKLDCTV_cjs.getUniqueEntries; }
|
|
251
|
-
});
|
|
252
|
-
Object.defineProperty(exports, "resolveEntries", {
|
|
253
|
-
enumerable: true,
|
|
254
|
-
get: function () { return chunkBEKLDCTV_cjs.resolveEntries; }
|
|
255
|
-
});
|
|
256
|
-
Object.defineProperty(exports, "resolveEntriesSync", {
|
|
257
|
-
enumerable: true,
|
|
258
|
-
get: function () { return chunkBEKLDCTV_cjs.resolveEntriesSync; }
|
|
259
|
-
});
|
|
260
|
-
Object.defineProperty(exports, "resolveEntry", {
|
|
261
|
-
enumerable: true,
|
|
262
|
-
get: function () { return chunkBEKLDCTV_cjs.resolveEntry; }
|
|
263
|
-
});
|
|
264
|
-
Object.defineProperty(exports, "resolveEntryInput", {
|
|
265
|
-
enumerable: true,
|
|
266
|
-
get: function () { return chunkBEKLDCTV_cjs.resolveEntryInput; }
|
|
267
|
-
});
|
|
268
|
-
Object.defineProperty(exports, "resolveEntryInputFile", {
|
|
269
|
-
enumerable: true,
|
|
270
|
-
get: function () { return chunkBEKLDCTV_cjs.resolveEntryInputFile; }
|
|
271
|
-
});
|
|
272
|
-
Object.defineProperty(exports, "resolveEntryOutput", {
|
|
273
|
-
enumerable: true,
|
|
274
|
-
get: function () { return chunkBEKLDCTV_cjs.resolveEntryOutput; }
|
|
275
|
-
});
|
|
276
|
-
Object.defineProperty(exports, "resolveVirtualEntry", {
|
|
277
|
-
enumerable: true,
|
|
278
|
-
get: function () { return chunkBEKLDCTV_cjs.resolveVirtualEntry; }
|
|
279
|
-
});
|
|
280
|
-
//# sourceMappingURL=index.cjs.map
|
|
281
|
-
//# sourceMappingURL=index.cjs.map
|
package/dist/lib/index.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs"}
|
package/dist/lib/index.d.cts
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
export { PartiallyResolvedContext, __ΩPartiallyResolvedContext, loadUserConfigFile, loadWorkspaceConfig } from './config-file.cjs';
|
|
2
|
-
export { createProgram } from './create-program.cjs';
|
|
3
|
-
export { getUniqueEntries, resolveEntries, resolveEntriesSync, resolveEntry, resolveEntryInput, resolveEntryInputFile, resolveEntryOutput, resolveVirtualEntry } from './entry.cjs';
|
|
4
|
-
export { CreateLogOptions, __ΩCreateLogOptions, createLog, extendLog } from './logger.cjs';
|
|
5
|
-
export { IsolatedDeclarationsResult, __ΩIsolatedDeclarationsResult, isolatedDeclarations } from './typescript/isolated-decl.cjs';
|
|
6
|
-
export { SourcesMap, __ΩSourcesMap, createVirtualCompilerHost, createVirtualProgram, getDefaultCompilerOptions, loadLibFiles } from './typescript/program.cjs';
|
|
7
|
-
export { findIncludeMatch, findMatch, getParsedTypeScriptConfig, getTsconfigFilePath, isIncludeMatchFound, isMatchFound } from './typescript/tsconfig.cjs';
|
|
8
|
-
export { createUnpluginFactory } from './unplugin/factory.cjs';
|
|
9
|
-
export { CreateUnpluginOptions, __ΩCreateUnpluginOptions, createUnplugin } from './unplugin/plugin.cjs';
|
|
10
|
-
export { ResolveIdArgs, ResolveIdOptions, __ΩResolveIdArgs, __ΩResolveIdOptions, handleResolveId } from './unplugin/resolve-id.cjs';
|
|
11
|
-
export { bundle } from './utilities/bundle.cjs';
|
|
12
|
-
export { getCache, setCache } from './utilities/cache.cjs';
|
|
13
|
-
export { FileHeaderOptions, __ΩFileHeaderOptions, getBaseFileHeader, getFileHeader } from './utilities/file-header.cjs';
|
|
14
|
-
export { CACHE_HASH_LENGTH, CreateContextOptions, PROJECT_ROOT_HASH_LENGTH, __ΩCreateContextOptions, discoverTemplates, getChecksum, getPersistedMeta, getPrefixedProjectRootHash, writeMetaFile } from './utilities/meta.cjs';
|
|
15
|
-
export { addPluginHook, checkDedupe, extractPluginHook, getHookHandler, isHookExternal, isHookInternal, isPlugin, isPluginConfig, isPluginConfigObject, isPluginConfigTuple, isPluginHook, isPluginHookFunction, isPluginHookObject } from './utilities/plugin-helpers.cjs';
|
|
16
|
-
export { resolve } from './utilities/resolve.cjs';
|
|
17
|
-
export { resolvePath } from './utilities/resolve-path.cjs';
|
|
18
|
-
export { getMagicString, getSourceFile, getString } from './utilities/source-file.cjs';
|
|
19
|
-
export { generateSourceMap } from './utilities/source-map.cjs';
|
|
20
|
-
export { Worker, WorkerOptions, __ΩWorkerOptions, createWorker } from './utilities/worker.cjs';
|
|
21
|
-
export { writeFile } from './utilities/write-file.cjs';
|
|
22
|
-
import 'jiti';
|
|
23
|
-
import './config-Ro14HmyO.cjs';
|
|
24
|
-
import '@storm-software/build-tools/types';
|
|
25
|
-
import '@storm-software/config-tools/types';
|
|
26
|
-
import '@storm-software/config/types';
|
|
27
|
-
import '@stryke/types/base';
|
|
28
|
-
import '@stryke/types/configuration';
|
|
29
|
-
import '@stryke/types/file';
|
|
30
|
-
import 'c12';
|
|
31
|
-
import 'vite';
|
|
32
|
-
import '@farmfe/core';
|
|
33
|
-
import '@rspack/core';
|
|
34
|
-
import '@storm-software/esbuild/types';
|
|
35
|
-
import '@storm-software/unbuild/types';
|
|
36
|
-
import 'esbuild';
|
|
37
|
-
import 'rolldown';
|
|
38
|
-
import 'rollup';
|
|
39
|
-
import 'webpack';
|
|
40
|
-
import '@stryke/env/get-env-paths';
|
|
41
|
-
import '@stryke/types/package-json';
|
|
42
|
-
import 'jest-worker';
|
|
43
|
-
import 'oxc-parser';
|
|
44
|
-
import 'semver';
|
|
45
|
-
import 'unplugin';
|
|
46
|
-
import '@stryke/types/array';
|
|
47
|
-
import './tsconfig-Bz-CiFqD.cjs';
|
|
48
|
-
import '@stryke/types/tsconfig';
|
|
49
|
-
import 'typescript';
|
|
50
|
-
import '@stryke/json/types';
|
|
51
|
-
import 'memfs';
|
|
52
|
-
import 'node:fs';
|
|
53
|
-
import 'unionfs';
|
|
54
|
-
import 'ts-morph';
|
|
55
|
-
import './hooks-CM-BbMzz.cjs';
|
|
56
|
-
import './compiler-CuQLTmTB.cjs';
|
|
57
|
-
import 'magic-string';
|
package/dist/lib/index.d.ts
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
export { PartiallyResolvedContext, __ΩPartiallyResolvedContext, loadUserConfigFile, loadWorkspaceConfig } from './config-file.js';
|
|
2
|
-
export { createProgram } from './create-program.js';
|
|
3
|
-
export { getUniqueEntries, resolveEntries, resolveEntriesSync, resolveEntry, resolveEntryInput, resolveEntryInputFile, resolveEntryOutput, resolveVirtualEntry } from './entry.js';
|
|
4
|
-
export { CreateLogOptions, __ΩCreateLogOptions, createLog, extendLog } from './logger.js';
|
|
5
|
-
export { IsolatedDeclarationsResult, __ΩIsolatedDeclarationsResult, isolatedDeclarations } from './typescript/isolated-decl.js';
|
|
6
|
-
export { SourcesMap, __ΩSourcesMap, createVirtualCompilerHost, createVirtualProgram, getDefaultCompilerOptions, loadLibFiles } from './typescript/program.js';
|
|
7
|
-
export { findIncludeMatch, findMatch, getParsedTypeScriptConfig, getTsconfigFilePath, isIncludeMatchFound, isMatchFound } from './typescript/tsconfig.js';
|
|
8
|
-
export { createUnpluginFactory } from './unplugin/factory.js';
|
|
9
|
-
export { CreateUnpluginOptions, __ΩCreateUnpluginOptions, createUnplugin } from './unplugin/plugin.js';
|
|
10
|
-
export { ResolveIdArgs, ResolveIdOptions, __ΩResolveIdArgs, __ΩResolveIdOptions, handleResolveId } from './unplugin/resolve-id.js';
|
|
11
|
-
export { bundle } from './utilities/bundle.js';
|
|
12
|
-
export { getCache, setCache } from './utilities/cache.js';
|
|
13
|
-
export { FileHeaderOptions, __ΩFileHeaderOptions, getBaseFileHeader, getFileHeader } from './utilities/file-header.js';
|
|
14
|
-
export { CACHE_HASH_LENGTH, CreateContextOptions, PROJECT_ROOT_HASH_LENGTH, __ΩCreateContextOptions, discoverTemplates, getChecksum, getPersistedMeta, getPrefixedProjectRootHash, writeMetaFile } from './utilities/meta.js';
|
|
15
|
-
export { addPluginHook, checkDedupe, extractPluginHook, getHookHandler, isHookExternal, isHookInternal, isPlugin, isPluginConfig, isPluginConfigObject, isPluginConfigTuple, isPluginHook, isPluginHookFunction, isPluginHookObject } from './utilities/plugin-helpers.js';
|
|
16
|
-
export { resolve } from './utilities/resolve.js';
|
|
17
|
-
export { resolvePath } from './utilities/resolve-path.js';
|
|
18
|
-
export { getMagicString, getSourceFile, getString } from './utilities/source-file.js';
|
|
19
|
-
export { generateSourceMap } from './utilities/source-map.js';
|
|
20
|
-
export { Worker, WorkerOptions, __ΩWorkerOptions, createWorker } from './utilities/worker.js';
|
|
21
|
-
export { writeFile } from './utilities/write-file.js';
|
|
22
|
-
import 'jiti';
|
|
23
|
-
import './config-DnifzkPt.js';
|
|
24
|
-
import '@storm-software/build-tools/types';
|
|
25
|
-
import '@storm-software/config-tools/types';
|
|
26
|
-
import '@storm-software/config/types';
|
|
27
|
-
import '@stryke/types/base';
|
|
28
|
-
import '@stryke/types/configuration';
|
|
29
|
-
import '@stryke/types/file';
|
|
30
|
-
import 'c12';
|
|
31
|
-
import 'vite';
|
|
32
|
-
import '@farmfe/core';
|
|
33
|
-
import '@rspack/core';
|
|
34
|
-
import '@storm-software/esbuild/types';
|
|
35
|
-
import '@storm-software/unbuild/types';
|
|
36
|
-
import 'esbuild';
|
|
37
|
-
import 'rolldown';
|
|
38
|
-
import 'rollup';
|
|
39
|
-
import 'webpack';
|
|
40
|
-
import '@stryke/env/get-env-paths';
|
|
41
|
-
import '@stryke/types/package-json';
|
|
42
|
-
import 'jest-worker';
|
|
43
|
-
import 'oxc-parser';
|
|
44
|
-
import 'semver';
|
|
45
|
-
import 'unplugin';
|
|
46
|
-
import '@stryke/types/array';
|
|
47
|
-
import './tsconfig-Bz-CiFqD.js';
|
|
48
|
-
import '@stryke/types/tsconfig';
|
|
49
|
-
import 'typescript';
|
|
50
|
-
import '@stryke/json/types';
|
|
51
|
-
import 'memfs';
|
|
52
|
-
import 'node:fs';
|
|
53
|
-
import 'unionfs';
|
|
54
|
-
import 'ts-morph';
|
|
55
|
-
import './hooks-B6Ow5MtE.js';
|
|
56
|
-
import './compiler-CuQLTmTB.js';
|
|
57
|
-
import 'magic-string';
|
package/dist/lib/index.js
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import './chunk-HJWJNSSZ.js';
|
|
2
|
-
export { generateSourceMap } from './chunk-NE46WXNJ.js';
|
|
3
|
-
export { Worker, createWorker } from './chunk-KSBESEOF.js';
|
|
4
|
-
export { getCache, setCache } from './chunk-MAHHHINV.js';
|
|
5
|
-
export { resolve } from './chunk-LEIOWD2W.js';
|
|
6
|
-
export { bundle } from './chunk-ODJBZ6PS.js';
|
|
7
|
-
export { resolvePath } from './chunk-RXQWNSZX.js';
|
|
8
|
-
import './chunk-XGH6JWRO.js';
|
|
9
|
-
export { isolatedDeclarations } from './chunk-367E23MI.js';
|
|
10
|
-
import './chunk-4BPHC6QQ.js';
|
|
11
|
-
export { createUnpluginFactory } from './chunk-6BRTJXZ2.js';
|
|
12
|
-
export { writeFile } from './chunk-HQ6TGY34.js';
|
|
13
|
-
export { getBaseFileHeader, getFileHeader } from './chunk-7R23HVGQ.js';
|
|
14
|
-
export { CACHE_HASH_LENGTH, PROJECT_ROOT_HASH_LENGTH, discoverTemplates, getChecksum, getPersistedMeta, getPrefixedProjectRootHash, writeMetaFile } from './chunk-KOCDKJDJ.js';
|
|
15
|
-
export { addPluginHook, checkDedupe, extractPluginHook, getHookHandler, isHookExternal, isHookInternal, isPlugin, isPluginConfig, isPluginConfigObject, isPluginConfigTuple, isPluginHook, isPluginHookFunction, isPluginHookObject } from './chunk-UGRFAVAJ.js';
|
|
16
|
-
export { createUnplugin } from './chunk-Q3KJZ3B5.js';
|
|
17
|
-
export { handleResolveId } from './chunk-YBIWVB66.js';
|
|
18
|
-
export { SourcesMap, createVirtualCompilerHost, createVirtualProgram, getDefaultCompilerOptions, loadLibFiles } from './chunk-V2T4H24I.js';
|
|
19
|
-
export { findIncludeMatch, findMatch, getParsedTypeScriptConfig, getTsconfigFilePath, isIncludeMatchFound, isMatchFound } from './chunk-OO4BIM7N.js';
|
|
20
|
-
export { loadUserConfigFile, loadWorkspaceConfig } from './chunk-56LQSSQ3.js';
|
|
21
|
-
export { createProgram } from './chunk-ESYYL5UH.js';
|
|
22
|
-
export { createLog, extendLog } from './chunk-35EO5Y7R.js';
|
|
23
|
-
export { getMagicString, getSourceFile, getString } from './chunk-PXSRMP4E.js';
|
|
24
|
-
import './chunk-3I2YOM2E.js';
|
|
25
|
-
export { getUniqueEntries, resolveEntries, resolveEntriesSync, resolveEntry, resolveEntryInput, resolveEntryInputFile, resolveEntryOutput, resolveVirtualEntry } from './chunk-STAKGAWR.js';
|
|
26
|
-
import './chunk-7QVYU63E.js';
|
|
27
|
-
//# sourceMappingURL=index.js.map
|
|
28
|
-
//# sourceMappingURL=index.js.map
|
package/dist/lib/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
package/dist/lib/logger.cjs
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var chunk632PWWU7_cjs = require('./chunk-632PWWU7.cjs');
|
|
4
|
-
require('./chunk-PK6SKIKE.cjs');
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
Object.defineProperty(exports, "createLog", {
|
|
9
|
-
enumerable: true,
|
|
10
|
-
get: function () { return chunk632PWWU7_cjs.createLog; }
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "extendLog", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function () { return chunk632PWWU7_cjs.extendLog; }
|
|
15
|
-
});
|
|
16
|
-
//# sourceMappingURL=logger.cjs.map
|
|
17
|
-
//# sourceMappingURL=logger.cjs.map
|
package/dist/lib/logger.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"logger.cjs"}
|
package/dist/lib/logger.d.cts
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { LogLevelLabel } from '@storm-software/config-tools/types';
|
|
2
|
-
import { L as LogFn, W as WorkspaceConfig } from './config-Ro14HmyO.cjs';
|
|
3
|
-
import '@storm-software/build-tools/types';
|
|
4
|
-
import '@storm-software/config/types';
|
|
5
|
-
import '@stryke/types/base';
|
|
6
|
-
import '@stryke/types/configuration';
|
|
7
|
-
import '@stryke/types/file';
|
|
8
|
-
import 'c12';
|
|
9
|
-
import 'vite';
|
|
10
|
-
import '@farmfe/core';
|
|
11
|
-
import '@rspack/core';
|
|
12
|
-
import '@storm-software/esbuild/types';
|
|
13
|
-
import '@storm-software/unbuild/types';
|
|
14
|
-
import 'esbuild';
|
|
15
|
-
import 'rolldown';
|
|
16
|
-
import 'rollup';
|
|
17
|
-
import 'webpack';
|
|
18
|
-
import '@stryke/env/get-env-paths';
|
|
19
|
-
import '@stryke/types/package-json';
|
|
20
|
-
import 'jest-worker';
|
|
21
|
-
import 'jiti';
|
|
22
|
-
import 'oxc-parser';
|
|
23
|
-
import 'semver';
|
|
24
|
-
import 'unplugin';
|
|
25
|
-
import '@stryke/types/array';
|
|
26
|
-
import './tsconfig-Bz-CiFqD.cjs';
|
|
27
|
-
import '@stryke/types/tsconfig';
|
|
28
|
-
import 'typescript';
|
|
29
|
-
import '@stryke/json/types';
|
|
30
|
-
import 'memfs';
|
|
31
|
-
import 'node:fs';
|
|
32
|
-
import 'unionfs';
|
|
33
|
-
|
|
34
|
-
interface CreateLogOptions {
|
|
35
|
-
name?: string;
|
|
36
|
-
logLevel?: LogLevelLabel | null;
|
|
37
|
-
customLogger?: LogFn;
|
|
38
|
-
colors?: WorkspaceConfig["colors"];
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Create a logging function with a specific name and options.
|
|
42
|
-
*
|
|
43
|
-
* @param name - The name of the logging function.
|
|
44
|
-
* @param options - The options to configure the logging function.
|
|
45
|
-
* @returns A logging function.
|
|
46
|
-
*/
|
|
47
|
-
declare const createLog: (name: string | null, options?: CreateLogOptions) => LogFn;
|
|
48
|
-
declare const extendLog: (logFn: LogFn, name: string) => LogFn;
|
|
49
|
-
declare type __ΩCreateLogOptions = any[];
|
|
50
|
-
|
|
51
|
-
export { type CreateLogOptions, type __ΩCreateLogOptions, createLog, extendLog };
|
package/dist/lib/logger.d.ts
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { LogLevelLabel } from '@storm-software/config-tools/types';
|
|
2
|
-
import { L as LogFn, W as WorkspaceConfig } from './config-DnifzkPt.js';
|
|
3
|
-
import '@storm-software/build-tools/types';
|
|
4
|
-
import '@storm-software/config/types';
|
|
5
|
-
import '@stryke/types/base';
|
|
6
|
-
import '@stryke/types/configuration';
|
|
7
|
-
import '@stryke/types/file';
|
|
8
|
-
import 'c12';
|
|
9
|
-
import 'vite';
|
|
10
|
-
import '@farmfe/core';
|
|
11
|
-
import '@rspack/core';
|
|
12
|
-
import '@storm-software/esbuild/types';
|
|
13
|
-
import '@storm-software/unbuild/types';
|
|
14
|
-
import 'esbuild';
|
|
15
|
-
import 'rolldown';
|
|
16
|
-
import 'rollup';
|
|
17
|
-
import 'webpack';
|
|
18
|
-
import '@stryke/env/get-env-paths';
|
|
19
|
-
import '@stryke/types/package-json';
|
|
20
|
-
import 'jest-worker';
|
|
21
|
-
import 'jiti';
|
|
22
|
-
import 'oxc-parser';
|
|
23
|
-
import 'semver';
|
|
24
|
-
import 'unplugin';
|
|
25
|
-
import '@stryke/types/array';
|
|
26
|
-
import './tsconfig-Bz-CiFqD.js';
|
|
27
|
-
import '@stryke/types/tsconfig';
|
|
28
|
-
import 'typescript';
|
|
29
|
-
import '@stryke/json/types';
|
|
30
|
-
import 'memfs';
|
|
31
|
-
import 'node:fs';
|
|
32
|
-
import 'unionfs';
|
|
33
|
-
|
|
34
|
-
interface CreateLogOptions {
|
|
35
|
-
name?: string;
|
|
36
|
-
logLevel?: LogLevelLabel | null;
|
|
37
|
-
customLogger?: LogFn;
|
|
38
|
-
colors?: WorkspaceConfig["colors"];
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Create a logging function with a specific name and options.
|
|
42
|
-
*
|
|
43
|
-
* @param name - The name of the logging function.
|
|
44
|
-
* @param options - The options to configure the logging function.
|
|
45
|
-
* @returns A logging function.
|
|
46
|
-
*/
|
|
47
|
-
declare const createLog: (name: string | null, options?: CreateLogOptions) => LogFn;
|
|
48
|
-
declare const extendLog: (logFn: LogFn, name: string) => LogFn;
|
|
49
|
-
declare type __ΩCreateLogOptions = any[];
|
|
50
|
-
|
|
51
|
-
export { type CreateLogOptions, type __ΩCreateLogOptions, createLog, extendLog };
|
package/dist/lib/logger.js
DELETED
package/dist/lib/logger.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"logger.js"}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { TsConfigJson, CompilerOptions } from '@stryke/types/tsconfig';
|
|
2
|
-
import ts from 'typescript';
|
|
3
|
-
|
|
4
|
-
type ReflectionMode = "default" | "explicit" | "never";
|
|
5
|
-
type RawReflectionMode = ReflectionMode | "" | boolean | string | string[] | undefined;
|
|
6
|
-
/**
|
|
7
|
-
* Defines the level of reflection to be used during the transpilation process.
|
|
8
|
-
*
|
|
9
|
-
* @remarks
|
|
10
|
-
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
11
|
-
* - `minimal` - Only the essential type information is captured.
|
|
12
|
-
* - `normal` - Additional type information is captured, including some contextual data.
|
|
13
|
-
* - `verbose` - All available type information is captured, including detailed contextual data.
|
|
14
|
-
*/
|
|
15
|
-
type ReflectionLevel = "minimal" | "normal" | "verbose";
|
|
16
|
-
interface DeepkitOptions {
|
|
17
|
-
/**
|
|
18
|
-
* Either true to activate reflection for all files compiled using this tsconfig,
|
|
19
|
-
* or a list of globs/file paths relative to this tsconfig.json.
|
|
20
|
-
* Globs/file paths can be prefixed with a ! to exclude them.
|
|
21
|
-
*/
|
|
22
|
-
reflection?: RawReflectionMode;
|
|
23
|
-
/**
|
|
24
|
-
* Defines the level of reflection to be used during the transpilation process.
|
|
25
|
-
*
|
|
26
|
-
* @remarks
|
|
27
|
-
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
28
|
-
* - `minimal` - Only the essential type information is captured.
|
|
29
|
-
* - `normal` - Additional type information is captured, including some contextual data.
|
|
30
|
-
* - `verbose` - All available type information is captured, including detailed contextual data.
|
|
31
|
-
*/
|
|
32
|
-
reflectionLevel?: ReflectionLevel;
|
|
33
|
-
}
|
|
34
|
-
type TSCompilerOptions = CompilerOptions & DeepkitOptions;
|
|
35
|
-
/**
|
|
36
|
-
* The TypeScript compiler configuration.
|
|
37
|
-
*
|
|
38
|
-
* @see https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
|
|
39
|
-
*/
|
|
40
|
-
interface TSConfig extends Omit<TsConfigJson, "reflection"> {
|
|
41
|
-
/**
|
|
42
|
-
* Either true to activate reflection for all files compiled using this tsconfig,
|
|
43
|
-
* or a list of globs/file paths relative to this tsconfig.json.
|
|
44
|
-
* Globs/file paths can be prefixed with a ! to exclude them.
|
|
45
|
-
*/
|
|
46
|
-
reflection?: RawReflectionMode;
|
|
47
|
-
/**
|
|
48
|
-
* Defines the level of reflection to be used during the transpilation process.
|
|
49
|
-
*
|
|
50
|
-
* @remarks
|
|
51
|
-
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
52
|
-
* - `minimal` - Only the essential type information is captured.
|
|
53
|
-
* - `normal` - Additional type information is captured, including some contextual data.
|
|
54
|
-
* - `verbose` - All available type information is captured, including detailed contextual data.
|
|
55
|
-
*/
|
|
56
|
-
reflectionLevel?: ReflectionLevel;
|
|
57
|
-
/**
|
|
58
|
-
* Instructs the TypeScript compiler how to compile `.ts` files.
|
|
59
|
-
*/
|
|
60
|
-
compilerOptions?: TSCompilerOptions;
|
|
61
|
-
}
|
|
62
|
-
type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
63
|
-
originalTsconfigJson: TsConfigJson;
|
|
64
|
-
tsconfigJson: TSConfig;
|
|
65
|
-
tsconfigFilePath: string;
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
export type { ParsedTypeScriptConfig as P, TSConfig as T };
|