@genesislcap/vite-builder 15.6.2 → 15.7.0-ts7.1
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/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -2
- package/package.json +4 -3
- package/src/index.ts +9 -1
- package/tsconfig.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { BuildContext } from '@genesislcap/build-kit';
|
|
2
|
+
export default _default;
|
|
2
3
|
/**
|
|
3
4
|
* There seems to be various documented issues using Vite in a monorepo setup that are impacted by various factors.
|
|
4
5
|
*
|
|
@@ -23,6 +24,5 @@ import type { BuildContext } from '@genesislcap/build-kit';
|
|
|
23
24
|
*
|
|
24
25
|
* This has the added benefit of aligning with the current production app builds.
|
|
25
26
|
*/
|
|
26
|
-
declare
|
|
27
|
-
export default _default;
|
|
27
|
+
declare function _default(ctx: BuildContext): Promise<void>;
|
|
28
28
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;;AAc3D;;;;;;;;;;;;;;;;;;;;;;;GAuBG;0BAEmB,GAAG,EAAE,YAAY"}
|
package/dist/index.js
CHANGED
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
const node_fs_1 = require("node:fs");
|
|
5
5
|
const node_path_1 = require("node:path");
|
|
6
|
+
const node_url_1 = require("node:url");
|
|
6
7
|
const build_kit_1 = require("@genesislcap/build-kit");
|
|
7
8
|
const consola_1 = tslib_1.__importDefault(require("consola"));
|
|
8
9
|
const vite_js_1 = require("./vite.js");
|
|
@@ -31,7 +32,8 @@ const vite_js_1 = require("./vite.js");
|
|
|
31
32
|
* This has the added benefit of aligning with the current production app builds.
|
|
32
33
|
*/
|
|
33
34
|
exports.default = (ctx) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
34
|
-
var _a, _b
|
|
35
|
+
var _a, _b;
|
|
36
|
+
var _c;
|
|
35
37
|
const { config: { app: { rootElement }, env, http, }, dirs: { cwd }, cli: { isDev, isBuild, isAnalyze, options: { open, https }, }, pkg: { description }, resolve: { alias }, } = ctx;
|
|
36
38
|
const define = (0, build_kit_1.resolveDefineConfig)(env, http, 'vite');
|
|
37
39
|
const handlebars = yield (0, vite_js_1.getHandlebarsModule)();
|
|
@@ -41,7 +43,14 @@ exports.default = (ctx) => tslib_1.__awaiter(void 0, void 0, void 0, function* (
|
|
|
41
43
|
const buildMode = (_c = (_b = (_a = ctx.config.vite) === null || _a === void 0 ? void 0 : _a.checker) === null || _b === void 0 ? void 0 : _b.buildMode) !== null && _c !== void 0 ? _c : false;
|
|
42
44
|
const checkerPlugin = (0, node_fs_1.existsSync)(tsconfigPath)
|
|
43
45
|
? (yield (0, vite_js_1.getCheckerModule)())({
|
|
44
|
-
typescript: {
|
|
46
|
+
typescript: {
|
|
47
|
+
tsconfigPath,
|
|
48
|
+
buildMode,
|
|
49
|
+
// TypeScript 7's native compiler ships no in-process JS API, which the
|
|
50
|
+
// checker worker requires — point it at the API-compatible TypeScript 6
|
|
51
|
+
// package. file:// URL so the worker's dynamic import works on Windows.
|
|
52
|
+
typescriptPath: (0, node_url_1.pathToFileURL)(require.resolve('@typescript/typescript6')).href,
|
|
53
|
+
},
|
|
45
54
|
})
|
|
46
55
|
: null;
|
|
47
56
|
const baseHrefPlugin = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/vite-builder",
|
|
3
3
|
"description": "Vite builder",
|
|
4
|
-
"version": "15.
|
|
4
|
+
"version": "15.7.0-ts7.1",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"lint:fix": "genx lint -l ox --fix"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@genesislcap/build-kit": "15.
|
|
19
|
+
"@genesislcap/build-kit": "15.7.0-ts7.1",
|
|
20
|
+
"@typescript/typescript6": "~6.0.2",
|
|
20
21
|
"consola": "^3.0.2",
|
|
21
22
|
"copyfiles": "^2.4.1",
|
|
22
23
|
"vite": "^7.2.2",
|
|
@@ -31,5 +32,5 @@
|
|
|
31
32
|
"publishConfig": {
|
|
32
33
|
"access": "public"
|
|
33
34
|
},
|
|
34
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "cbdc6ec8914b5a75c30535e4bd15b11aff6c96fd"
|
|
35
36
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { existsSync } from 'node:fs';
|
|
2
2
|
import { relative, resolve } from 'node:path';
|
|
3
|
+
import { pathToFileURL } from 'node:url';
|
|
3
4
|
import type { BuildContext } from '@genesislcap/build-kit';
|
|
4
5
|
import {
|
|
5
6
|
createDevProxies,
|
|
@@ -67,7 +68,14 @@ export default async (ctx: BuildContext) => {
|
|
|
67
68
|
const buildMode = ctx.config.vite?.checker?.buildMode ?? false;
|
|
68
69
|
const checkerPlugin = existsSync(tsconfigPath)
|
|
69
70
|
? (await getCheckerModule())({
|
|
70
|
-
typescript: {
|
|
71
|
+
typescript: {
|
|
72
|
+
tsconfigPath,
|
|
73
|
+
buildMode,
|
|
74
|
+
// TypeScript 7's native compiler ships no in-process JS API, which the
|
|
75
|
+
// checker worker requires — point it at the API-compatible TypeScript 6
|
|
76
|
+
// package. file:// URL so the worker's dynamic import works on Windows.
|
|
77
|
+
typescriptPath: pathToFileURL(require.resolve('@typescript/typescript6')).href,
|
|
78
|
+
},
|
|
71
79
|
})
|
|
72
80
|
: null;
|
|
73
81
|
|
package/tsconfig.json
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/index.ts","./src/vite.ts"],"version":"5.9.2"}
|
|
1
|
+
{"version":"7.0.2","root":["./src/index.ts","./src/vite.ts"],"packageJsons":["../../../../node_modules/@jridgewell/gen-mapping/package.json","../../../../node_modules/@jridgewell/source-map/package.json","../../../../node_modules/@jridgewell/trace-mapping/package.json","../../../../node_modules/@types/http-proxy/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/package.json","../../../../node_modules/@types/inquirer/package.json","../../../../node_modules/@types/node/package.json","../../../../node_modules/@types/through/package.json","../../../../node_modules/assert/package.json","../../../../node_modules/buffer/package.json","../../../../node_modules/chalk/package.json","../../../../node_modules/consola/package.json","../../../../node_modules/edit-json-file/package.json","../../../../node_modules/esbuild/package.json","../../../../node_modules/events/package.json","../../../../node_modules/http-proxy/package.json","../../../../node_modules/inquirer/package.json","../../../../node_modules/jiti/package.json","../../../../node_modules/mlly/package.json","../../../../node_modules/pkg-types/package.json","../../../../node_modules/postcss/package.json","../../../../node_modules/pretty-ms/package.json","../../../../node_modules/process/package.json","../../../../node_modules/punycode/package.json","../../../../node_modules/source-map-js/package.json","../../../../node_modules/string_decoder/package.json","../../../../node_modules/terser/package.json","../../../../node_modules/through/package.json","../../../../node_modules/tslib/package.json","../../../../node_modules/tsx/package.json","../../../../node_modules/typescript/package.json","../../../../node_modules/undici-types/package.json","../../../../node_modules/util/package.json","../../../../node_modules/vite/node_modules/@types/estree/package.json","../../../../node_modules/vite/node_modules/rollup/package.json","../../../../node_modules/vite/package.json","../../../../node_modules/vite/types/package.json","../../../../node_modules/yaml/package.json","../build-kit/package.json","./package.json"],"missingPackageJsons":["../../../../node_modules/@jridgewell/gen-mapping/types/package.json","../../../../node_modules/@jridgewell/source-map/types/package.json","../../../../node_modules/@jridgewell/trace-mapping/types/package.json","../../../../node_modules/@types/assert/package.json","../../../../node_modules/@types/assert/strict/package.json","../../../../node_modules/@types/async_hooks/package.json","../../../../node_modules/@types/child_process/package.json","../../../../node_modules/@types/cluster/package.json","../../../../node_modules/@types/console/package.json","../../../../node_modules/@types/constants/package.json","../../../../node_modules/@types/crypto/package.json","../../../../node_modules/@types/dgram/package.json","../../../../node_modules/@types/diagnostics_channel/package.json","../../../../node_modules/@types/dns/package.json","../../../../node_modules/@types/dns/promises/package.json","../../../../node_modules/@types/domain/package.json","../../../../node_modules/@types/edit-json-file/package.json","../../../../node_modules/@types/events/package.json","../../../../node_modules/@types/fs/package.json","../../../../node_modules/@types/fs/promises/package.json","../../../../node_modules/@types/http/package.json","../../../../node_modules/@types/http2/package.json","../../../../node_modules/@types/https/package.json","../../../../node_modules/@types/inquirer/lib/objects/package.json","../../../../node_modules/@types/inquirer/lib/package.json","../../../../node_modules/@types/inquirer/lib/prompts/package.json","../../../../node_modules/@types/inquirer/lib/ui/package.json","../../../../node_modules/@types/inquirer/lib/utils/package.json","../../../../node_modules/@types/inquirer/node_modules/readline/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/internal/operators/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/internal/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduled/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/internal/symbol/package.json","../../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/package.json","../../../../node_modules/@types/inquirer/node_modules/through/package.json","../../../../node_modules/@types/inspector/package.json","../../../../node_modules/@types/inspector/promises/package.json","../../../../node_modules/@types/less/package.json","../../../../node_modules/@types/lightningcss/package.json","../../../../node_modules/@types/module/package.json","../../../../node_modules/@types/net/package.json","../../../../node_modules/@types/node/assert/package.json","../../../../node_modules/@types/node/compatibility/package.json","../../../../node_modules/@types/node/dns/package.json","../../../../node_modules/@types/node/fs/package.json","../../../../node_modules/@types/node/readline/package.json","../../../../node_modules/@types/node/stream/package.json","../../../../node_modules/@types/node/timers/package.json","../../../../node_modules/@types/node/web-globals/package.json","../../../../node_modules/@types/os/package.json","../../../../node_modules/@types/path/package.json","../../../../node_modules/@types/path/posix/package.json","../../../../node_modules/@types/path/win32/package.json","../../../../node_modules/@types/perf_hooks/package.json","../../../../node_modules/@types/process/package.json","../../../../node_modules/@types/punycode/package.json","../../../../node_modules/@types/querystring/package.json","../../../../node_modules/@types/readline/package.json","../../../../node_modules/@types/readline/promises/package.json","../../../../node_modules/@types/repl/package.json","../../../../node_modules/@types/sass-embedded/package.json","../../../../node_modules/@types/sass/package.json","../../../../node_modules/@types/stream/consumers/package.json","../../../../node_modules/@types/stream/package.json","../../../../node_modules/@types/stream/promises/package.json","../../../../node_modules/@types/stream/web/package.json","../../../../node_modules/@types/string_decoder/package.json","../../../../node_modules/@types/stylus/package.json","../../../../node_modules/@types/timers/package.json","../../../../node_modules/@types/timers/promises/package.json","../../../../node_modules/@types/tls/package.json","../../../../node_modules/@types/trace_events/package.json","../../../../node_modules/@types/tty/package.json","../../../../node_modules/@types/typescript__lib-decorators/legacy/package.json","../../../../node_modules/@types/typescript__lib-decorators/package.json","../../../../node_modules/@types/typescript__lib-es2015/collection/package.json","../../../../node_modules/@types/typescript__lib-es2015/core/package.json","../../../../node_modules/@types/typescript__lib-es2015/generator/package.json","../../../../node_modules/@types/typescript__lib-es2015/iterable/package.json","../../../../node_modules/@types/typescript__lib-es2015/package.json","../../../../node_modules/@types/typescript__lib-es2015/promise/package.json","../../../../node_modules/@types/typescript__lib-es2015/proxy/package.json","../../../../node_modules/@types/typescript__lib-es2015/reflect/package.json","../../../../node_modules/@types/typescript__lib-es2015/symbol-wellknown/package.json","../../../../node_modules/@types/typescript__lib-es2015/symbol/package.json","../../../../node_modules/@types/typescript__lib-es2016/array-include/package.json","../../../../node_modules/@types/typescript__lib-es2016/intl/package.json","../../../../node_modules/@types/typescript__lib-es2016/package.json","../../../../node_modules/@types/typescript__lib-es2017/arraybuffer/package.json","../../../../node_modules/@types/typescript__lib-es2017/date/package.json","../../../../node_modules/@types/typescript__lib-es2017/intl/package.json","../../../../node_modules/@types/typescript__lib-es2017/object/package.json","../../../../node_modules/@types/typescript__lib-es2017/package.json","../../../../node_modules/@types/typescript__lib-es2017/sharedmemory/package.json","../../../../node_modules/@types/typescript__lib-es2017/string/package.json","../../../../node_modules/@types/typescript__lib-es2017/typedarrays/package.json","../../../../node_modules/@types/typescript__lib-es2018/asyncgenerator/package.json","../../../../node_modules/@types/typescript__lib-es2018/asynciterable/package.json","../../../../node_modules/@types/typescript__lib-es2018/intl/package.json","../../../../node_modules/@types/typescript__lib-es2018/package.json","../../../../node_modules/@types/typescript__lib-es2018/promise/package.json","../../../../node_modules/@types/typescript__lib-es2018/regexp/package.json","../../../../node_modules/@types/typescript__lib-es2019/array/package.json","../../../../node_modules/@types/typescript__lib-es2019/intl/package.json","../../../../node_modules/@types/typescript__lib-es2019/object/package.json","../../../../node_modules/@types/typescript__lib-es2019/package.json","../../../../node_modules/@types/typescript__lib-es2019/string/package.json","../../../../node_modules/@types/typescript__lib-es2019/symbol/package.json","../../../../node_modules/@types/typescript__lib-es2020/bigint/package.json","../../../../node_modules/@types/typescript__lib-es2020/date/package.json","../../../../node_modules/@types/typescript__lib-es2020/intl/package.json","../../../../node_modules/@types/typescript__lib-es2020/number/package.json","../../../../node_modules/@types/typescript__lib-es2020/package.json","../../../../node_modules/@types/typescript__lib-es2020/promise/package.json","../../../../node_modules/@types/typescript__lib-es2020/sharedmemory/package.json","../../../../node_modules/@types/typescript__lib-es2020/string/package.json","../../../../node_modules/@types/typescript__lib-es2020/symbol-wellknown/package.json","../../../../node_modules/@types/typescript__lib-es5/package.json","../../../../node_modules/@types/url/package.json","../../../../node_modules/@types/util/package.json","../../../../node_modules/@types/util/types/package.json","../../../../node_modules/@types/v8/package.json","../../../../node_modules/@types/vite/client/package.json","../../../../node_modules/@types/vm/package.json","../../../../node_modules/@types/wasi/package.json","../../../../node_modules/@types/worker_threads/package.json","../../../../node_modules/@types/zlib/package.json","../../../../node_modules/@typescript/lib-decorators/legacy/package.json","../../../../node_modules/@typescript/lib-decorators/package.json","../../../../node_modules/@typescript/lib-es2015/collection/package.json","../../../../node_modules/@typescript/lib-es2015/core/package.json","../../../../node_modules/@typescript/lib-es2015/generator/package.json","../../../../node_modules/@typescript/lib-es2015/iterable/package.json","../../../../node_modules/@typescript/lib-es2015/package.json","../../../../node_modules/@typescript/lib-es2015/promise/package.json","../../../../node_modules/@typescript/lib-es2015/proxy/package.json","../../../../node_modules/@typescript/lib-es2015/reflect/package.json","../../../../node_modules/@typescript/lib-es2015/symbol-wellknown/package.json","../../../../node_modules/@typescript/lib-es2015/symbol/package.json","../../../../node_modules/@typescript/lib-es2016/array-include/package.json","../../../../node_modules/@typescript/lib-es2016/intl/package.json","../../../../node_modules/@typescript/lib-es2016/package.json","../../../../node_modules/@typescript/lib-es2017/arraybuffer/package.json","../../../../node_modules/@typescript/lib-es2017/date/package.json","../../../../node_modules/@typescript/lib-es2017/intl/package.json","../../../../node_modules/@typescript/lib-es2017/object/package.json","../../../../node_modules/@typescript/lib-es2017/package.json","../../../../node_modules/@typescript/lib-es2017/sharedmemory/package.json","../../../../node_modules/@typescript/lib-es2017/string/package.json","../../../../node_modules/@typescript/lib-es2017/typedarrays/package.json","../../../../node_modules/@typescript/lib-es2018/asyncgenerator/package.json","../../../../node_modules/@typescript/lib-es2018/asynciterable/package.json","../../../../node_modules/@typescript/lib-es2018/intl/package.json","../../../../node_modules/@typescript/lib-es2018/package.json","../../../../node_modules/@typescript/lib-es2018/promise/package.json","../../../../node_modules/@typescript/lib-es2018/regexp/package.json","../../../../node_modules/@typescript/lib-es2019/array/package.json","../../../../node_modules/@typescript/lib-es2019/intl/package.json","../../../../node_modules/@typescript/lib-es2019/object/package.json","../../../../node_modules/@typescript/lib-es2019/package.json","../../../../node_modules/@typescript/lib-es2019/string/package.json","../../../../node_modules/@typescript/lib-es2019/symbol/package.json","../../../../node_modules/@typescript/lib-es2020/bigint/package.json","../../../../node_modules/@typescript/lib-es2020/date/package.json","../../../../node_modules/@typescript/lib-es2020/intl/package.json","../../../../node_modules/@typescript/lib-es2020/number/package.json","../../../../node_modules/@typescript/lib-es2020/package.json","../../../../node_modules/@typescript/lib-es2020/promise/package.json","../../../../node_modules/@typescript/lib-es2020/sharedmemory/package.json","../../../../node_modules/@typescript/lib-es2020/string/package.json","../../../../node_modules/@typescript/lib-es2020/symbol-wellknown/package.json","../../../../node_modules/@typescript/lib-es5/package.json","../../../../node_modules/assert/strict/package.json","../../../../node_modules/async_hooks/package.json","../../../../node_modules/child_process/package.json","../../../../node_modules/cluster/package.json","../../../../node_modules/consola/dist/package.json","../../../../node_modules/console/package.json","../../../../node_modules/constants/package.json","../../../../node_modules/crypto/package.json","../../../../node_modules/dgram/package.json","../../../../node_modules/diagnostics_channel/package.json","../../../../node_modules/dns/package.json","../../../../node_modules/dns/promises/package.json","../../../../node_modules/domain/package.json","../../../../node_modules/esbuild/lib/package.json","../../../../node_modules/fs/package.json","../../../../node_modules/fs/promises/package.json","../../../../node_modules/http/package.json","../../../../node_modules/http2/package.json","../../../../node_modules/https/package.json","../../../../node_modules/inspector/package.json","../../../../node_modules/inspector/promises/package.json","../../../../node_modules/less/package.json","../../../../node_modules/lightningcss/package.json","../../../../node_modules/mlly/dist/package.json","../../../../node_modules/module/package.json","../../../../node_modules/net/package.json","../../../../node_modules/os/package.json","../../../../node_modules/path/package.json","../../../../node_modules/path/posix/package.json","../../../../node_modules/path/win32/package.json","../../../../node_modules/perf_hooks/package.json","../../../../node_modules/pkg-types/dist/package.json","../../../../node_modules/postcss/lib/package.json","../../../../node_modules/postcss/node_modules/source-map-js/package.json","../../../../node_modules/querystring/package.json","../../../../node_modules/readline/package.json","../../../../node_modules/readline/promises/package.json","../../../../node_modules/repl/package.json","../../../../node_modules/sass-embedded/package.json","../../../../node_modules/sass/package.json","../../../../node_modules/stream/consumers/package.json","../../../../node_modules/stream/package.json","../../../../node_modules/stream/promises/package.json","../../../../node_modules/stream/web/package.json","../../../../node_modules/stylus/package.json","../../../../node_modules/sugarss/package.json","../../../../node_modules/terser/node_modules/@jridgewell/source-map/package.json","../../../../node_modules/terser/tools/package.json","../../../../node_modules/timers/package.json","../../../../node_modules/timers/promises/package.json","../../../../node_modules/tls/package.json","../../../../node_modules/trace_events/package.json","../../../../node_modules/tty/package.json","../../../../node_modules/typescript/lib/package.json","../../../../node_modules/url/package.json","../../../../node_modules/util/types/package.json","../../../../node_modules/v8/package.json","../../../../node_modules/vite/client/package.json","../../../../node_modules/vite/dist/node/chunks/package.json","../../../../node_modules/vite/dist/node/package.json","../../../../node_modules/vite/dist/package.json","../../../../node_modules/vite/node_modules/@types/esbuild/package.json","../../../../node_modules/vite/node_modules/@types/less/package.json","../../../../node_modules/vite/node_modules/@types/lightningcss/package.json","../../../../node_modules/vite/node_modules/@types/postcss/package.json","../../../../node_modules/vite/node_modules/@types/sass-embedded/package.json","../../../../node_modules/vite/node_modules/@types/sass/package.json","../../../../node_modules/vite/node_modules/@types/stylus/package.json","../../../../node_modules/vite/node_modules/@types/terser/package.json","../../../../node_modules/vite/node_modules/esbuild/package.json","../../../../node_modules/vite/node_modules/estree/package.json","../../../../node_modules/vite/node_modules/less/package.json","../../../../node_modules/vite/node_modules/lightningcss/package.json","../../../../node_modules/vite/node_modules/postcss/package.json","../../../../node_modules/vite/node_modules/rollup/dist/package.json","../../../../node_modules/vite/node_modules/rollup/parseAst/package.json","../../../../node_modules/vite/node_modules/sass-embedded/package.json","../../../../node_modules/vite/node_modules/sass/package.json","../../../../node_modules/vite/node_modules/stylus/package.json","../../../../node_modules/vite/node_modules/terser/package.json","../../../../node_modules/vite/types/internal/package.json","../../../../node_modules/vm/package.json","../../../../node_modules/wasi/package.json","../../../../node_modules/worker_threads/package.json","../../../../node_modules/zlib/package.json","../build-kit/node_modules/chalk/package.json","../build-kit/node_modules/child_process/package.json","../build-kit/node_modules/edit-json-file/package.json","../build-kit/node_modules/http-proxy/package.json","../build-kit/node_modules/inquirer/package.json","../build-kit/node_modules/pkg-types/package.json","../build-kit/node_modules/pretty-ms/package.json","./node_modules/@typescript/lib-decorators/legacy/package.json","./node_modules/@typescript/lib-decorators/package.json","./node_modules/@typescript/lib-es2015/collection/package.json","./node_modules/@typescript/lib-es2015/core/package.json","./node_modules/@typescript/lib-es2015/generator/package.json","./node_modules/@typescript/lib-es2015/iterable/package.json","./node_modules/@typescript/lib-es2015/package.json","./node_modules/@typescript/lib-es2015/promise/package.json","./node_modules/@typescript/lib-es2015/proxy/package.json","./node_modules/@typescript/lib-es2015/reflect/package.json","./node_modules/@typescript/lib-es2015/symbol-wellknown/package.json","./node_modules/@typescript/lib-es2015/symbol/package.json","./node_modules/@typescript/lib-es2016/array-include/package.json","./node_modules/@typescript/lib-es2016/intl/package.json","./node_modules/@typescript/lib-es2016/package.json","./node_modules/@typescript/lib-es2017/arraybuffer/package.json","./node_modules/@typescript/lib-es2017/date/package.json","./node_modules/@typescript/lib-es2017/intl/package.json","./node_modules/@typescript/lib-es2017/object/package.json","./node_modules/@typescript/lib-es2017/package.json","./node_modules/@typescript/lib-es2017/sharedmemory/package.json","./node_modules/@typescript/lib-es2017/string/package.json","./node_modules/@typescript/lib-es2017/typedarrays/package.json","./node_modules/@typescript/lib-es2018/asyncgenerator/package.json","./node_modules/@typescript/lib-es2018/asynciterable/package.json","./node_modules/@typescript/lib-es2018/intl/package.json","./node_modules/@typescript/lib-es2018/package.json","./node_modules/@typescript/lib-es2018/promise/package.json","./node_modules/@typescript/lib-es2018/regexp/package.json","./node_modules/@typescript/lib-es2019/array/package.json","./node_modules/@typescript/lib-es2019/intl/package.json","./node_modules/@typescript/lib-es2019/object/package.json","./node_modules/@typescript/lib-es2019/package.json","./node_modules/@typescript/lib-es2019/string/package.json","./node_modules/@typescript/lib-es2019/symbol/package.json","./node_modules/@typescript/lib-es2020/bigint/package.json","./node_modules/@typescript/lib-es2020/date/package.json","./node_modules/@typescript/lib-es2020/intl/package.json","./node_modules/@typescript/lib-es2020/number/package.json","./node_modules/@typescript/lib-es2020/package.json","./node_modules/@typescript/lib-es2020/promise/package.json","./node_modules/@typescript/lib-es2020/sharedmemory/package.json","./node_modules/@typescript/lib-es2020/string/package.json","./node_modules/@typescript/lib-es2020/symbol-wellknown/package.json","./node_modules/@typescript/lib-es5/package.json","./node_modules/consola/package.json","./node_modules/tslib/package.json","./node_modules/vite/client/package.json","./node_modules/vite/package.json"]}
|