quickbundle 0.15.0 → 1.1.0

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.
@@ -1,13 +1,4 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
2
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
13
4
  };
@@ -26,23 +17,16 @@ const createBuildCommand = (program) => {
26
17
  .task({
27
18
  key: "outfiles",
28
19
  label: "Bundle assets 📦",
29
- handler(context) {
30
- return __awaiter(this, void 0, void 0, function* () {
31
- const outfiles = yield (0, bundler_1.bundle)({
32
- isFast: context.noCheck,
33
- isProduction: true,
34
- });
35
- return outfiles.filter((outfile) => outfile !== null);
36
- });
20
+ async handler() {
21
+ const outfiles = await (0, bundler_1.build)();
22
+ return outfiles.filter((outfile) => outfile !== null);
37
23
  },
38
24
  })
39
25
  .task({
40
26
  key: "sizes",
41
27
  label: "Compute sizes 🔢",
42
- handler(context) {
43
- return __awaiter(this, void 0, void 0, function* () {
44
- return yield calculateBundleSize(context.outfiles);
45
- });
28
+ async handler(context) {
29
+ return await calculateBundleSize(context.outfiles);
46
30
  },
47
31
  })
48
32
  .task({
@@ -65,15 +49,15 @@ const createBuildCommand = (program) => {
65
49
  });
66
50
  };
67
51
  exports.createBuildCommand = createBuildCommand;
68
- const calculateBundleSize = (filenames) => __awaiter(void 0, void 0, void 0, function* () {
69
- const calculateFileSize = (filename) => __awaiter(void 0, void 0, void 0, function* () {
70
- const content = yield (0, helpers_1.readFile)(filename);
71
- const gzSize = yield (0, gzip_size_1.default)(content);
52
+ const calculateBundleSize = async (filenames) => {
53
+ const calculateFileSize = async (filename) => {
54
+ const content = await (0, helpers_1.readFile)(filename);
55
+ const gzSize = await (0, gzip_size_1.default)(content);
72
56
  return {
73
57
  filename,
74
58
  raw: content.byteLength,
75
59
  gzip: gzSize,
76
60
  };
77
- });
78
- return yield Promise.all(filenames.map((filename) => calculateFileSize(filename)));
79
- });
61
+ };
62
+ return await Promise.all(filenames.map((filename) => calculateFileSize(filename)));
63
+ };
@@ -1,3 +1,2 @@
1
1
  import { Termost } from "termost";
2
- import { ProgramContext } from "../types";
3
- export declare const createWatchCommand: (program: Termost<ProgramContext>) => void;
2
+ export declare const createWatchCommand: (program: Termost) => void;
@@ -1,13 +1,4 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
2
  Object.defineProperty(exports, "__esModule", { value: true });
12
3
  exports.createWatchCommand = void 0;
13
4
  const termost_1 = require("termost");
@@ -17,42 +8,27 @@ const createWatchCommand = (program) => {
17
8
  .command({
18
9
  name: "watch",
19
10
  description: "Watch and rebuild on any code change (development mode)",
20
- })
21
- .option({
22
- key: "serve",
23
- description: "Set the HTML entrypoint to enable and open a live reloadable client",
24
- name: "serve",
25
- defaultValue: undefined,
26
11
  })
27
12
  .task({
28
13
  key: "callbacks",
29
14
  label: "Setup watcher",
30
- handler(context) {
31
- return __awaiter(this, void 0, void 0, function* () {
32
- const callbacks = {
33
- onError() { },
34
- onSuccess() { },
35
- };
36
- (0, bundler_1.bundle)({
37
- isFast: context.noCheck,
38
- isProduction: false,
39
- onWatch(error) {
40
- if (error) {
41
- callbacks.onError(String(error));
42
- }
43
- else {
44
- callbacks.onSuccess();
45
- }
46
- },
47
- serveEntryPoint: context.serve,
48
- })
49
- .then(() => callbacks.onSuccess())
50
- .catch((error) => {
15
+ async handler() {
16
+ const callbacks = {
17
+ onError() { },
18
+ onLoading() { },
19
+ onSuccess() { },
20
+ };
21
+ (0, bundler_1.watch)((type, error) => {
22
+ if (type === "loading")
23
+ return callbacks.onLoading();
24
+ if (error) {
51
25
  callbacks.onError(String(error));
52
- throw error;
53
- });
54
- return callbacks;
26
+ }
27
+ else {
28
+ callbacks.onSuccess();
29
+ }
55
30
  });
31
+ return callbacks;
56
32
  },
57
33
  })
58
34
  .task({
@@ -60,19 +36,16 @@ const createWatchCommand = (program) => {
60
36
  const onNotify = (type, message) => {
61
37
  console.clear();
62
38
  if (type === "loading") {
63
- termost_1.helpers.message(`Waiting for first build to be done...`, {
39
+ termost_1.helpers.message(`Waiting for the build to be done...`, {
64
40
  type: "information",
65
41
  });
66
42
  return;
67
43
  }
68
- if (context.serve) {
69
- termost_1.helpers.message("Live reload enabled");
70
- }
71
44
  termost_1.helpers.message(`Last update at ${new Date().toLocaleTimeString()}\n${message ? `\n${message}\n` : ""}`, { type });
72
45
  };
73
46
  context.callbacks.onSuccess = () => onNotify("success");
74
47
  context.callbacks.onError = (error) => onNotify("error", error);
75
- onNotify("loading");
48
+ context.callbacks.onLoading = () => onNotify("loading");
76
49
  },
77
50
  });
78
51
  };
@@ -5,12 +5,6 @@ const build_1 = require("./commands/build");
5
5
  const watch_1 = require("./commands/watch");
6
6
  const createProgram = (...commandBuilders) => {
7
7
  const program = (0, termost_1.termost)("The zero-configuration bundler powered by ESBuild");
8
- program.option({
9
- key: "noCheck",
10
- name: "no-check",
11
- description: "Enable fast mode by forcing the deactivation of `tsc` types checking and generation",
12
- defaultValue: false,
13
- });
14
8
  for (const commandBuilder of commandBuilders) {
15
9
  commandBuilder(program);
16
10
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es6.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/constants.ts","../src/helpers.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/types.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/command/command.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/command/controller/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/command/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/input/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/option/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/task/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/termost.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/index.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/gzip-size@6.0.0/node_modules/gzip-size/index.d.ts","../node_modules/.pnpm/esbuild@0.14.30/node_modules/esbuild/lib/main.d.ts","../src/types.ts","../src/bundler/package.ts","../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/typescript.d.ts","../src/bundler/typescript.ts","../src/bundler/plugins.ts","../src/bundler/bundler.ts","../src/bundler/index.ts","../src/program/types.ts","../src/program/commands/build.ts","../src/program/commands/watch.ts","../src/program/index.ts","../src/index.ts","../node_modules/.pnpm/@types+json-schema@7.0.11/node_modules/@types/json-schema/index.d.ts","../node_modules/.pnpm/@types+json5@0.0.29/node_modules/@types/json5/index.d.ts","../node_modules/.pnpm/@types+minimist@1.2.2/node_modules/@types/minimist/index.d.ts","../node_modules/.pnpm/@types+normalize-package-data@2.4.1/node_modules/@types/normalize-package-data/index.d.ts","../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts","../node_modules/.pnpm/@types+retry@0.12.1/node_modules/@types/retry/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"6a6d2cb50edd9c74a0187c9e831887833f8421ebb000450ede029b98a055f4c1","be34bfb2d9fd96600c4718940a1a3b8891deb9dddbd6ea50e3b41d819a44aea2","03b8387262de9ad4456d05285ae50a7b75290a4b2e8ca645334c236dbee0fae9","7535fb001c17f6e616fb43e3b3ec737317aaa1e04afc463644c030ebed4cd759","a0d7fe3720632526b71f045499c81543825f399812691e31aace32505287fc6e","b93db58ae819b77c2f7315d1002ecd2a971600a1c9c6381ec2a372706977ccdf","14f52ab5ad96a776756ccd3d0725d798f1082df12b56ab385a50a181d2eb6523","9b72bc8865e0f7c683208138db9a1f8009acc600fae4a7c99f08a4bd6eca29d2","77e94490f77549d6f1c2e84740724b8c8cd3032902cb1db66813be4073f2c05c","0daaf4c47c31f39d2d23dc7686f93037d83c8df3fdd605ef32f9933e7178be07","18942af75ca1b281bb83de00a29199de62c8fbb412ff0beb522c03cd5773bac0","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","aad03645286ed080d3727064df72eb785467053f04ed4460118a8ef45865574e","f6801b113c81e3b4ef0b2b27e457cd1a269b72339312bb716be93a199d8d0bc3","74fc8de25649a72263bbf34d7c83eedbd942ffefa6d8548400eeac4b85f2283e","b1688d27fceabc88947a1f499c84ff3cf5bfd4f3ec97e295de4ca6c804ff4316","ba00bb2ada9a5b7e0ab18c7282c0161f5af809112e4439b35c8b3853f7d436a7","6d36def13737619be5ebc21250eb9b20fa6bfca10fde8f8c4bad53fba4dd71ff","c3702d17568e25ad6e04c650bbd149bbb7c3dd4ca56250f96aae28ad4886f5fc","10f01fcc53d332e17f1e911cc88b0b5904446ef29423fcfbfe8de9b5713ad699","a2ed2934be2573714b8813048816502690f52c7fc5ade4ad572e40d4d852986c","7f5c1d30755f7687c4bc68536321b3d35e5f0b9ab087988252507cd07ca7c2df","5502f73f14e9107ddcf4e883a928c3de49117dbae57f0c8cc81ded44aa2b69e0","6def69fe742c851d86451abfe44db93360edfbfc7d3916a609ca93d6b6aad37c","372aac5697ed2bde7d94beeab33c87741c9790cfbc6637e4ba85eb1de6470dce","d97a85dd1a2300ce93325a9675eb90f6dfaaa8d832991fb61e1a27b439d720e3","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"jsx":4,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":true,"skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[98],[55,98],[58,98],[59,64,98],[60,70,71,78,87,97,98],[60,61,70,78,98],[62,98],[63,64,71,79,98],[64,87,94,98],[65,67,70,78,98],[66,98],[67,68,98],[69,70,98],[70,98],[70,71,72,87,97,98],[70,71,72,87,98],[73,78,87,97,98],[70,71,73,74,78,87,94,97,98],[73,75,87,94,97,98],[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104],[70,76,98],[77,97,98],[67,70,78,87,98],[79,98],[80,98],[58,81,98],[82,96,98,102],[83,98],[84,98],[70,85,98],[85,86,98,100],[70,87,88,89,98],[87,89,98],[87,88,98],[90,98],[91,98],[70,92,93,98],[92,93,98],[64,78,87,94,98],[95,98],[78,96,98],[59,73,84,97,98],[64,98],[87,98,99],[98,100],[98,101],[59,64,70,72,81,87,97,98,100,102],[87,98,103],[87,98,103,105],[46,98],[47,48,98],[46,49,98],[53,98],[46,49,50,51,52,98],[44,45,73,98,107,108,109,111,112],[98,113],[44,45,80,98],[45,98,107,111],[44,54,80,98,110],[44,60,71,78,98],[98,118],[45,54,98,106,114,115],[54,98,114,115],[54,98,115,116,117]],"referencedMap":[[120,1],[121,1],[122,1],[55,2],[56,2],[58,3],[59,4],[60,5],[61,6],[62,7],[63,8],[64,9],[65,10],[66,11],[67,12],[68,12],[69,13],[70,14],[71,15],[72,16],[57,1],[104,1],[73,17],[74,18],[75,19],[105,20],[76,21],[77,22],[78,23],[79,24],[80,25],[81,26],[82,27],[83,28],[84,29],[85,30],[86,31],[87,32],[89,33],[88,34],[90,35],[91,36],[92,37],[93,38],[94,39],[95,40],[96,41],[97,42],[98,43],[99,44],[100,45],[101,46],[102,47],[103,48],[123,1],[124,1],[125,1],[107,1],[106,49],[47,50],[48,50],[49,51],[50,50],[51,52],[52,50],[54,53],[53,54],[46,1],[9,1],[10,1],[14,1],[13,1],[3,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[4,1],[5,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[35,1],[36,1],[37,1],[8,1],[42,1],[38,1],[39,1],[40,1],[41,1],[2,1],[1,1],[43,1],[12,1],[11,1],[110,1],[113,55],[114,56],[109,57],[112,58],[111,59],[44,1],[45,60],[119,61],[116,62],[117,63],[118,64],[115,1],[108,1]],"exportedModulesMap":[[120,1],[121,1],[122,1],[55,2],[56,2],[58,3],[59,4],[60,5],[61,6],[62,7],[63,8],[64,9],[65,10],[66,11],[67,12],[68,12],[69,13],[70,14],[71,15],[72,16],[57,1],[104,1],[73,17],[74,18],[75,19],[105,20],[76,21],[77,22],[78,23],[79,24],[80,25],[81,26],[82,27],[83,28],[84,29],[85,30],[86,31],[87,32],[89,33],[88,34],[90,35],[91,36],[92,37],[93,38],[94,39],[95,40],[96,41],[97,42],[98,43],[99,44],[100,45],[101,46],[102,47],[103,48],[123,1],[124,1],[125,1],[107,1],[106,49],[47,50],[48,50],[49,51],[50,50],[51,52],[52,50],[54,53],[53,54],[46,1],[9,1],[10,1],[14,1],[13,1],[3,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[4,1],[5,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[35,1],[36,1],[37,1],[8,1],[42,1],[38,1],[39,1],[40,1],[41,1],[2,1],[1,1],[43,1],[12,1],[11,1],[110,1],[113,55],[114,56],[109,57],[112,58],[111,59],[44,1],[45,60],[119,61],[116,62],[117,63],[118,64],[115,1],[108,1]],"semanticDiagnosticsPerFile":[120,121,122,55,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,57,104,73,74,75,105,76,77,78,79,80,81,82,83,84,85,86,87,89,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,123,124,125,107,106,47,48,49,50,51,52,54,53,46,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,42,38,39,40,41,2,1,43,12,11,110,113,114,109,112,111,44,45,119,116,117,118,115,108]},"version":"4.6.3"}
1
+ {"program":{"fileNames":["../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.full.d.ts","../src/constants.ts","../src/helpers.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/types.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/command/command.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/command/controller/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/command/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/input/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/option/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/api/task/index.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/termost.d.ts","../node_modules/.pnpm/termost@0.9.0/node_modules/termost/dist/index.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@18.15.11/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/gzip-size@6.0.0/node_modules/gzip-size/index.d.ts","../node_modules/.pnpm/esbuild@0.17.15/node_modules/esbuild/lib/main.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/serializers.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/common.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/symbols.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/observable.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/filter.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/flatMap.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/interval.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/map.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/merge.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/multicast.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/scan.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/subject.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/unsubscribe.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/dist/index.d.ts","../node_modules/.pnpm/observable-fns@0.6.1/node_modules/observable-fns/index.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/observable-promise.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/symbols.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/transferable.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/types/master.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/master/implementation.browser.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/master/implementation.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/master/thread.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/master/pool-types.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/master/pool.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/types/worker.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/master/spawn.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/master/index.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/worker/index.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/dist/index.d.ts","../src/types.ts","../node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/typescript.d.ts","../src/bundler/configs/typescript.ts","../src/bundler/configs/esbuild.ts","../src/bundler/configs/package.ts","../src/bundler/configs/index.ts","../src/bundler/bundler.ts","../src/bundler/index.ts","../src/program/commands/build.ts","../src/program/commands/watch.ts","../src/program/index.ts","../src/index.ts","../node_modules/.pnpm/dts-bundle-generator@8.0.0/node_modules/dts-bundle-generator/dist/bundle-generator.d.ts","../node_modules/.pnpm/threads@1.7.0/node_modules/threads/worker.d.ts","../src/bundler/workers/dts.ts","../src/bundler/workers/esbuild.ts","../node_modules/.pnpm/@vitest+utils@0.29.8/node_modules/@vitest/utils/dist/types.d.ts","../node_modules/.pnpm/@vitest+utils@0.29.8/node_modules/@vitest/utils/dist/helpers.d.ts","../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/types.d.ts","../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/index.d.ts","../node_modules/.pnpm/@vitest+utils@0.29.8/node_modules/@vitest/utils/dist/index.d.ts","../node_modules/.pnpm/@vitest+runner@0.29.8/node_modules/@vitest/runner/dist/tasks-3fbb29e4.d.ts","../node_modules/.pnpm/@vitest+runner@0.29.8/node_modules/@vitest/runner/dist/runner-b9659804.d.ts","../node_modules/.pnpm/@vitest+runner@0.29.8/node_modules/@vitest/runner/dist/index.d.ts","../node_modules/.pnpm/@types+chai@4.3.4/node_modules/@types/chai/index.d.ts","../node_modules/.pnpm/@vitest+expect@0.29.8/node_modules/@vitest/expect/dist/index.d.ts","../node_modules/.pnpm/vite@4.2.1_@types+node@18.15.11/node_modules/vite/types/metadata.d.ts","../node_modules/.pnpm/vite@4.2.1_@types+node@18.15.11/node_modules/vite/types/hmrPayload.d.ts","../node_modules/.pnpm/vite@4.2.1_@types+node@18.15.11/node_modules/vite/types/customEvent.d.ts","../node_modules/.pnpm/rollup@3.20.2/node_modules/rollup/dist/rollup.d.ts","../node_modules/.pnpm/vite@4.2.1_@types+node@18.15.11/node_modules/vite/types/importGlob.d.ts","../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/comment.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/at-rule.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/rule.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/container.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/declaration.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/previous-map.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/input.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/warning.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/document.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/root.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/lazy-result.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/no-work-result.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/processor.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/result.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/node.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/list.d.ts","../node_modules/.pnpm/postcss@8.4.21/node_modules/postcss/lib/postcss.d.ts","../node_modules/.pnpm/vite@4.2.1_@types+node@18.15.11/node_modules/vite/dist/node/index.d.ts","../node_modules/.pnpm/@vitest+runner@0.29.8/node_modules/@vitest/runner/dist/types.d.ts","../node_modules/.pnpm/@vitest+runner@0.29.8/node_modules/@vitest/runner/types.d.ts","../node_modules/.pnpm/@vitest+runner@0.29.8/node_modules/@vitest/runner/dist/utils.d.ts","../node_modules/.pnpm/@vitest+runner@0.29.8/node_modules/@vitest/runner/utils.d.ts","../node_modules/.pnpm/tinybench@2.4.0/node_modules/tinybench/dist/index.d.ts","../node_modules/.pnpm/vite-node@0.29.8_@types+node@18.15.11/node_modules/vite-node/dist/types.d-1e7e3fdf.d.ts","../node_modules/.pnpm/vite-node@0.29.8_@types+node@18.15.11/node_modules/vite-node/dist/types-e6d31da0.d.ts","../node_modules/.pnpm/vite-node@0.29.8_@types+node@18.15.11/node_modules/vite-node/dist/client.d.ts","../node_modules/.pnpm/vite-node@0.29.8_@types+node@18.15.11/node_modules/vite-node/dist/index.d.ts","../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts","../node_modules/.pnpm/vite-node@0.29.8_@types+node@18.15.11/node_modules/vite-node/dist/server.d.ts","../node_modules/.pnpm/vitest@0.29.8/node_modules/vitest/dist/types-94cfe4b4.d.ts","../node_modules/.pnpm/tinyspy@1.1.1/node_modules/tinyspy/dist/index.d.ts","../node_modules/.pnpm/@vitest+spy@0.29.8/node_modules/@vitest/spy/dist/index.d.ts","../node_modules/.pnpm/vitest@0.29.8/node_modules/vitest/dist/env-afee91f0.d.ts","../node_modules/.pnpm/vitest@0.29.8/node_modules/vitest/dist/index.d.ts","../node_modules/.pnpm/vitest@0.29.8/node_modules/vitest/globals.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"322cc0ca9c311414642c0d7ef3b57beedbac198ca074e3e109a4be4c366dcb81",{"version":"6a6d2cb50edd9c74a0187c9e831887833f8421ebb000450ede029b98a055f4c1","signature":"c8fafe39b0fb660114dc2238f6ffd09f587e1e78315e5d3f1eed290e064550b2"},{"version":"5e9499afce5405fd7591134b2e1355417852ab529bb92ca40ce8ea95326bf838","signature":"32531b6cc174e5a82a912ae6d6f92d0aa678fe4a8d20e20eaeffb6073cacb803"},"03b8387262de9ad4456d05285ae50a7b75290a4b2e8ca645334c236dbee0fae9","7535fb001c17f6e616fb43e3b3ec737317aaa1e04afc463644c030ebed4cd759","a0d7fe3720632526b71f045499c81543825f399812691e31aace32505287fc6e","b93db58ae819b77c2f7315d1002ecd2a971600a1c9c6381ec2a372706977ccdf","14f52ab5ad96a776756ccd3d0725d798f1082df12b56ab385a50a181d2eb6523","9b72bc8865e0f7c683208138db9a1f8009acc600fae4a7c99f08a4bd6eca29d2","77e94490f77549d6f1c2e84740724b8c8cd3032902cb1db66813be4073f2c05c","0daaf4c47c31f39d2d23dc7686f93037d83c8df3fdd605ef32f9933e7178be07","18942af75ca1b281bb83de00a29199de62c8fbb412ff0beb522c03cd5773bac0","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","aad03645286ed080d3727064df72eb785467053f04ed4460118a8ef45865574e","99d951629f7096dcd79adbaa83a85e3be57613005533bd23029b3aba4ce9383e","f1d9160fb81541f3c10fc6457460996513b2b7c5ab24dd04fd73eef3715ce77a","4e006051d228db7353bce62d800a5536415dda05b95b7e2c670a0e00a076f710",{"version":"6bdad1ac6bb4fcaa30d0411fd8ae5e40085ce9f22cffcb21f95c02290b0653d9","affectsGlobalScope":true},"1a21aa114a3d3c820c9ce08882b787c57d45dd6fc4403470082a8af67184f579","21a2907acf3036c4f861acbf4e0d3c39234b37ce9c09813b701402d798d28a43","b483b6e55a091cfc957c4a2777fb0aa339d2eb8272823dcdde6e9a756925e57d","27ae21c57a953e900f86d621a514c3f729fb9ff84a730651cad5c053fb01dddd","a964d0067536a4f6a865187f5e35704594e82415b45c3f97404377cd2d0cb2ed","a64b56ee548a0e7a008ade684bb4e90f839f6fa7b5fdf3c094c3d3afdf8e7a50","549f135dc5036cd796e696f674ebed023ea8975fe3c45f9756c7af367ec22d17","cd863a4b8db476cc40a29499fc53060dade5252cfb7ab66bdf6ffab812759e80","7d4850e43830e9d91d3404f13df3d9a3ba77b265a3651b4f2a2be4974a3f88d4","81899fdb2022b2a8cfd33a3c841287a41eece3632d585b98c85e6cf759b2d2fb","426ca500daf1ba4b1951bb7e71ab826588a7a74aca2ac527910ac5d06692b24d","f1b54bf51de1d22118aeb86459bda37254eef4c55cda66dc89a7e01fca9bff48","b822d007931f0444c96474838a6bf53fac2e6f4a831c56dfd7c9cffff7b2acf8","22772ceb28dd19d22a90b7206590ad35caa6ac0110756116e922445964758954","f315fd09bba3098c1cde1c596aa54ad931b151be02fa7636cbe49afb4895a52b","80a5292858446561265c46e761aed019b175834614b22e866a19a7a43a41d50b","d464fdf3bde9821280c214324af7b6c667c2527a12ad8cef9ad4e9f8f1dcedde","27a3f6a036bf401336140a81167c215dd259223c80e8768470bba79eca0799d7","ddbcb0247bf4c46829521caf2a98c4935d2ac833b48e835cfd2b78e66e302107","5f967c9dd0a0c6c173540f46c7a81c29fcb628e3c352ff4b774120286f00d961","d35f21999c1a46b8a87854d87c935e2596efdb13de821882aaacf2b9acebb43e","923f74b8838ff6fc649a8c2da1fed004d0e644ce384134de46d6612450b1b106","1f1577135ea1e3e684ec6cd18ec50ed508540d24415c33426e39ee621c878d1d","e8042728b35d5811aa01640537f39bc046b19af5689bee4cd3973a510eca72dd","33fc2c19ec6e854a01855c283ca4401fffa884cbe97a8e3d238a8824bcf946b6","59156af96d277cd3c5d37a5dd74423dd60c1dc5635e221feb689a07d4d3b708e","74fc8de25649a72263bbf34d7c83eedbd942ffefa6d8548400eeac4b85f2283e","21c0786dddf52537611499340166278507eb9784628d321c2cb6acc696cba0f6",{"version":"a1101b3156963cc30f43d4d04649b303d2fd9efcce06256fac60eb96d0eab34d","signature":"17f6e38c7b04706d59955dc67f49f0f5c6463835aa33eebb3b9eac9444fd8cab"},{"version":"8d8cfea4dc92050bb70ac4a995997da7b98d07946243bda75de070cd5fca7b24","signature":"ce78d6c24b28dcf33590f934358fcd2b72aeb4f3587a16d7e42bb71c3edee526"},{"version":"d19df7539fc20696ca3b70e29ed3272e96a46b5df416d5f6e7ba5f72201bcc20","signature":"4224314b65cd100395f69bb3e8ff7fee81ec2f72ba9aa85fce03b139efa77645"},{"version":"5f0ae1b3b45c0491c922d8e6b4c362d71bf21fa0325f6443fc5f89ce90725359","signature":"906a2d124ed7aa7854a393f0580504a16ed61226f715f73fb93b77da9bbe1a51"},{"version":"57a7fc83579262e6819281b22ee79d20fb883f18e98f395ee13574b2da4a25a8","signature":"ce641336789db801a4792255ca4c7022b4d7869f5bcd2010e6bdb2a2de146387"},"389fb61fba2f52fa1d45f23940f1973c603800f424b2770a74736da30c615551",{"version":"dbbe6d3a5a6e21dbfb7a07d2c1f3e565487c4c1852e16c9d11a358b4c1c45c31","signature":"68ef9b2cb4844e794f4e865d208e4924fc3e6d9853102e5e4ceac5fa6a629344"},{"version":"4bd23dd96700be7007c7f635d7dedbf46037fe73849c9acea402b2b1f26b1230","signature":"d801d4dab7e1da4f18a7bc1a5622ae1d55ac59cbce10b540b3ab1de16f04940f"},{"version":"b84cde849e1aae85e646058b79d779424fd32993c70e95943fcf833c6e019aca","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d97a85dd1a2300ce93325a9675eb90f6dfaaa8d832991fb61e1a27b439d720e3","signature":"b1ea22eb71a2dc58eb9bf92cce3714975d9739938c12674e6ea9ebc45a9f103b"},"a031622240b65c5c4b9784f9e6554b5efcbfe26748bffd51a693ef4769e387eb","cde6be327ffd342a8c840cb67e85c94dfff93d16613c273971f1cc9e6201ded7",{"version":"d026b5cfdcf646a5655ada280ce94116e691a66e30e98f5a51095e92c23a07ac","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"5ecee8a9f64fbe4edec7ab10f15d7ef45750074e6b1aac5840db9b6030cd10ad","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"9c54a5d94a1ca20e52912f67f5d4d7dbdd53d73fe7ab647f1b1e2037e0fff754","bda0f515b6bf7e0559674024b72e23b58e6edf32814ce490309028957827bedb","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","acaca72cacae9449bd3d95305e8bcc095a4e212b21980404d9061e4ef8b0f8ff","e22be393172f9891fd85a9dbf6578e7582b19b4181bae7bf96789cda28a26f99","7fe01098e057c4f06e88cf2cbe995bf9a915149a1739ec5df0ce38d5e0891212","8f666b7ffc837ac6e6db9a4753fe6515fef5c8cb50fc31bd0a7d7067255da778",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},"2989e1e80d13c2d9e3e0cfa2c2573e3e1f845f7d1e02c42dce4f16aa919a837f","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","0aa7220845f5f3902fe043f646f9d9218bd7dd6c4046e8471580866ea6b03aa2","8bff1a31f450aeb1dc454de28fa419ea8c15831bbc8469832ea6f609b9999ed4","739c2c46edc112421fc023c24b4898b1f413f792bb6a02b40ba182c648e56c2f","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","d1c89db652113258e4ba4bbdf5cc7a2a3a600403d4d864a2087b95186253cd5b","11a90d2cb2eaf7fdf931a63b58279e8161f1477a1bd1e914ae026c1bbf9afed3","af18e30f3ba06e9870b61dfa4a109215caabdaa337590c51b4a044a9f338ce96","ace603f7b60599f2dcdbd71c07137b60a747dd33be540f4a294b890f9e0b89dc","7658fbdd425c656fb1849b44932ae7431e8c3198d22c65ce1490deb582743b52","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","dbef2851e33a4c2fd2f3164fec70e45df647eb0e87f250de784500a3037e2c37","31491a01ed7466e0b3b0ef8407f2524683055eceb955b1d5ccf7096129468b39","f4b12f7dde4fc0e386648318481bdcfe861b566be246bebf0e8a11ebd909adf9","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","df4e2f161f74870708c2cc5e1036a6405b878496408fda1ee50d5b10e50d6601","bf791da347fb1c0ffc1e2fcd35867e64bb8355270ae26278198c521bdcf94569","e0e0e3c068e145fbb322120979299ff130ffdd39f0dcd0d5aeaa9f3f8a0d01d9","fde91356172e35b9ea68bbdf33721f7c80307a4ce65b82105eac800e9e744995","9bd5e5a4a1e66b35efe3c48ddac1116537ef86e041717f3a9b9f1e060c74efa6","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","68161b6f3004fc10f8bb47a4986cef13c3b0728fb1ca3e1dc7316227d09b2c8d","664dfac4ee0a3c231a5155dd5e45a7b893a96d5cac6b36a0c6d3e51229be2aff","493a3eac01d492c1b3bcd61354ab9efce79ab54d60ab18032f55c0b16491d792","1c53e1884dc6550ce179c68e9e3086f54af258fff39eb70274ea9294eb7ce6df","70747ae6ed3d9c4290d6e93eaa1716ee5796f93ae270c532b27f01879573c488","e666e31d323fef5642f87db0da48a83e58f0aaf9e3823e87eabd8ec7e0441a36","62442c50848c468df0612aa09b3e811ac46e0c4fac720a4db8b8d03f626d992a","d12ab69ace581804d4f264eabc71094ca8dadfa70ae2bf5ccd54a8d6105ab84b","480dd78890e9f4e07ee18cf33132e9598328495de9546583dde3ac2c68f2eabe","687571b4d5e26bb371f986fc7258f1f76d0fcaf0a918ecb6904476fb6142c039","daf2aa41081742b223af9a7d816fe58714da044d60468c8a32d5af24706df2c5","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","31cb1194c20403122ffd756fc39f1bf0126aa3bab39cb7b62a77bcf93b12c154",{"version":"b245157689f3ef5af5b89fad4ad6cc2df8c780a3f23601378f782c4269533b40","affectsGlobalScope":true},"9bb2968ad5c75dc49dfebd740d0f57ebc81c865e3d034af6a40a8a2ca9d13c2b","0bf77fa5047b9f6acc0e597c92c9ee81b948a0fd3b1251a374ec9f6ca974298b","691ca3cb7591aba2cfc1fe25cd028e18f3752a3b9635f4e02a29e47c47698a4b","a8472b85cab6651925e83f8efcba33752de5dffdbd4094a979c5ca2b6be750c3",{"version":"829325a03054bf6c70506fa5cfcd997944faf73c54c9285d1a2d043d239f4565","affectsGlobalScope":true}],"root":[49,50,145,[147,156],159,160],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"jsx":4,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":false,"skipLibCheck":true,"strict":true,"target":7},"fileIdsList":[[106],[60,106],[63,106],[64,69,97,106],[65,76,77,84,94,105,106],[65,66,76,84,106],[67,106],[68,69,77,85,106],[69,94,102,106],[70,72,76,84,106],[71,106],[72,73,106],[76,106],[74,76,106],[76,77,78,94,105,106],[76,77,78,91,94,97,106],[106,110],[72,79,84,94,105,106],[76,77,79,80,84,94,102,105,106],[79,81,94,102,105,106],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112],[76,82,106],[83,105,106],[72,76,84,94,106],[85,106],[86,106],[63,87,106],[88,104,106,110],[89,106],[90,106],[76,91,92,106],[91,93,106,108],[64,76,94,95,96,97,106],[64,94,96,106],[94,95,106],[97,106],[98,106],[76,100,101,106],[100,101,106],[69,84,94,102,106],[103,106],[84,104,106],[64,79,90,105,106],[69,106],[94,106,107],[106,108],[106,109],[64,69,76,78,87,94,105,106,108,110],[94,106,111],[106,165,169],[106,165,166,167],[106,166],[106,165],[106,165,166],[106,196],[106,198],[106,208],[106,161],[106,161,162,164],[94,106,111,113],[106,119],[106,119,120,121,122,123,124,125,126,127,128],[106,118],[106,129],[106,180],[106,180,192],[106,177,178,179,181,192],[106,183],[106,180,187,191,194],[106,182,194],[106,185,187,190,191,194],[106,185,187,188,190,191,194],[106,177,178,179,180,181,183,184,185,186,187,191,194],[106,176,177,178,179,180,181,183,184,185,186,187,188,190,191,192,193],[106,176,194],[106,187,188,189,191,194],[106,190,194],[106,180,186,191,194],[106,184,192],[106,163],[106,176],[51,106],[52,53,106],[51,54,106],[58,106],[51,54,55,56,57,106],[106,116],[106,116,117,133,142,143],[106,134],[106,135],[106,134,136,137,139,141],[106,137],[106,130,137,138],[106,134,140],[106,130,134],[106,130],[106,132],[106,130,131,132,133],[106,117,133,140],[106,143],[106,201,202],[106,195,201,202,207],[106,201],[76,77,79,81,84,94,102,105,106,111,113,115,171,172,173,174,175,194],[106,172],[106,174],[77,106,110,165,168,169,170,195,197,199,200,203,204,205,206,207,209,210],[77,106,110,165,168,170,195,197,199,200,203,204,205,206,207],[106,211],[50,106,115,144,145,150],[49,50,106,115,147],[106,115,147,148,149],[49,50,86,106],[49,86,106,146],[106,151],[106,157,158],[106,115,150,158],[49,77,78,86,106],[106,155],[50,59,106,114,152],[59,106,152],[59,106,153,154],[115,147],[115,147,148],[78],[155],[59]],"referencedMap":[[169,1],[60,2],[61,2],[63,3],[64,4],[65,5],[66,6],[67,7],[68,8],[69,9],[70,10],[71,11],[72,12],[73,12],[75,13],[74,14],[76,13],[77,15],[78,16],[62,17],[112,1],[79,18],[80,19],[81,20],[113,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,31],[93,32],[94,33],[96,34],[95,35],[97,36],[98,37],[99,1],[100,38],[101,39],[102,40],[103,41],[104,42],[105,43],[106,44],[107,45],[108,46],[109,47],[110,48],[111,49],[170,50],[168,51],[167,52],[166,53],[196,51],[198,54],[197,55],[199,56],[209,57],[162,58],[165,59],[161,1],[157,1],[115,1],[114,60],[120,61],[121,61],[129,62],[122,61],[123,61],[124,61],[125,61],[119,63],[126,61],[127,61],[118,1],[128,1],[130,64],[178,65],[177,66],[180,67],[184,68],[181,66],[186,69],[183,70],[188,71],[193,1],[189,72],[192,73],[194,74],[182,75],[190,76],[191,77],[187,78],[179,65],[185,79],[164,80],[163,1],[174,1],[176,81],[205,1],[52,82],[53,82],[54,83],[55,82],[56,84],[57,82],[59,85],[58,86],[51,1],[117,87],[144,88],[135,89],[136,90],[142,91],[138,92],[139,93],[141,94],[137,95],[131,96],[116,1],[132,1],[133,97],[134,98],[140,1],[143,99],[158,100],[200,1],[208,1],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[146,1],[203,101],[204,101],[206,102],[202,103],[201,1],[195,104],[173,105],[172,1],[175,1],[171,106],[210,1],[211,107],[207,108],[212,109],[151,110],[148,111],[150,112],[149,113],[147,114],[152,115],[159,116],[160,117],[49,1],[50,118],[156,119],[153,120],[154,121],[155,122],[145,1]],"exportedModulesMap":[[169,1],[60,2],[61,2],[63,3],[64,4],[65,5],[66,6],[67,7],[68,8],[69,9],[70,10],[71,11],[72,12],[73,12],[75,13],[74,14],[76,13],[77,15],[78,16],[62,17],[112,1],[79,18],[80,19],[81,20],[113,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,31],[93,32],[94,33],[96,34],[95,35],[97,36],[98,37],[99,1],[100,38],[101,39],[102,40],[103,41],[104,42],[105,43],[106,44],[107,45],[108,46],[109,47],[110,48],[111,49],[170,50],[168,51],[167,52],[166,53],[196,51],[198,54],[197,55],[199,56],[209,57],[162,58],[165,59],[161,1],[157,1],[115,1],[114,60],[120,61],[121,61],[129,62],[122,61],[123,61],[124,61],[125,61],[119,63],[126,61],[127,61],[118,1],[128,1],[130,64],[178,65],[177,66],[180,67],[184,68],[181,66],[186,69],[183,70],[188,71],[193,1],[189,72],[192,73],[194,74],[182,75],[190,76],[191,77],[187,78],[179,65],[185,79],[164,80],[163,1],[174,1],[176,81],[205,1],[52,82],[53,82],[54,83],[55,82],[56,84],[57,82],[59,85],[58,86],[51,1],[117,87],[144,88],[135,89],[136,90],[142,91],[138,92],[139,93],[141,94],[137,95],[131,96],[116,1],[132,1],[133,97],[134,98],[140,1],[143,99],[158,100],[200,1],[208,1],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[146,1],[203,101],[204,101],[206,102],[202,103],[201,1],[195,104],[173,105],[172,1],[175,1],[171,106],[210,1],[211,107],[207,108],[212,109],[148,123],[150,124],[152,115],[50,125],[156,126],[153,127],[154,127],[145,1]],"semanticDiagnosticsPerFile":[169,60,61,63,64,65,66,67,68,69,70,71,72,73,75,74,76,77,78,62,112,79,80,81,113,82,83,84,85,86,87,88,89,90,91,92,93,94,96,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,170,168,167,166,196,198,197,199,209,162,165,161,157,115,114,120,121,129,122,123,124,125,119,126,127,118,128,130,178,177,180,184,181,186,183,188,193,189,192,194,182,190,191,187,179,185,164,163,174,176,205,52,53,54,55,56,57,59,58,51,117,144,135,136,142,138,139,141,137,131,116,132,133,134,140,143,158,200,208,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,48,43,44,39,40,41,42,1,45,11,10,146,203,204,206,202,201,195,173,172,175,171,210,211,207,212,151,148,150,149,147,152,159,160,49,50,156,153,154,155,145]},"version":"5.0.3"}
package/bin/types.d.ts CHANGED
@@ -1 +1 @@
1
- export declare type ModuleFormat = "esm" | "cjs";
1
+ export type ModuleFormat = "esm" | "cjs";
package/package.json CHANGED
@@ -1,12 +1,6 @@
1
1
  {
2
2
  "name": "quickbundle",
3
- "version": "0.15.0",
4
- "bin": {
5
- "quickbundle": "bin/index.js"
6
- },
7
- "files": [
8
- "bin"
9
- ],
3
+ "version": "1.1.0",
10
4
  "author": {
11
5
  "name": "Ayoub Adib",
12
6
  "email": "adbayb@gmail.com",
@@ -26,6 +20,12 @@
26
20
  "module",
27
21
  "fast"
28
22
  ],
23
+ "bin": {
24
+ "quickbundle": "bin/index.js"
25
+ },
26
+ "files": [
27
+ "bin"
28
+ ],
29
29
  "main": "bin/index.js",
30
30
  "scripts": {
31
31
  "prepublishOnly": "pnpm verify && pnpm build",
@@ -41,32 +41,31 @@
41
41
  "format": "prettier . --ignore-path .gitignore --ignore-path .prettierignore --write"
42
42
  },
43
43
  "dependencies": {
44
- "esbuild": "0.14.30",
44
+ "dts-bundle-generator": "8.0.0",
45
+ "esbuild": "0.17.15",
45
46
  "gzip-size": "6.0.0",
46
- "termost": "0.9.0"
47
- },
48
- "peerDependencies": {
49
- "typescript": ">=4.1"
50
- },
51
- "peerDependenciesMeta": {
52
- "typescript": {
53
- "optional": true
54
- }
47
+ "termost": "0.9.0",
48
+ "threads": "1.7.0",
49
+ "typescript": ">=4.0.0"
55
50
  },
56
51
  "devDependencies": {
57
- "@adbayb/eslint-config": "0.10.0",
58
- "@adbayb/prettier-config": "0.10.0",
59
- "@adbayb/ts-config": "0.10.0",
60
- "@commitlint/cli": "16.2.3",
61
- "@commitlint/config-conventional": "16.2.1",
52
+ "@adbayb/eslint-config": "0.14.0",
53
+ "@adbayb/prettier-config": "0.14.0",
54
+ "@adbayb/ts-config": "0.14.0",
55
+ "@commitlint/cli": "17.5.1",
56
+ "@commitlint/config-conventional": "17.4.4",
62
57
  "@semantic-release/git": "10.0.1",
63
- "@types/node": "17.0.23",
64
- "eslint": "8.12.0",
58
+ "@types/node": "18.15.11",
59
+ "eslint": "8.38.0",
65
60
  "husky": "4.3.8",
66
- "lint-staged": "12.3.7",
67
- "prettier": "2.6.1",
68
- "semantic-release": "19.0.2",
69
- "typescript": "4.6.3"
61
+ "lint-staged": "13.2.1",
62
+ "prettier": "2.8.7",
63
+ "semantic-release": "21.0.1",
64
+ "vitest": "0.29.8"
65
+ },
66
+ "packageManager": "pnpm@8.1.1",
67
+ "engines": {
68
+ "node": ">= 16.13.1"
70
69
  },
71
70
  "commitlint": {
72
71
  "extends": [
@@ -1,29 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getPackageMetadata = void 0;
4
- const path_1 = require("path");
5
- const constants_1 = require("../constants");
6
- const helpers_1 = require("../helpers");
7
- const getPackageMetadata = () => {
8
- const { devDependencies = {}, peerDependencies = {}, dependencies = {}, main, module, platform = "browser", source, types, } = require((0, path_1.resolve)(constants_1.CWD, "package.json"));
9
- (0, helpers_1.assert)(main, "A `main` field is required in `package.json`. Did you forget to add it?");
10
- (0, helpers_1.assert)(source, "A `source` field is required in `package.json`. Did you forget to add it?");
11
- (0, helpers_1.assert)(["browser", "node"].includes(platform), "The `platform` package field can only accept `browser` or `node` value.");
12
- const peerDependencyNames = Object.keys(peerDependencies);
13
- const externalDependencies = platform === "browser"
14
- ? peerDependencyNames
15
- : [
16
- ...peerDependencyNames,
17
- ...Object.keys(dependencies),
18
- ...Object.keys(devDependencies),
19
- ];
20
- return {
21
- destination: Object.assign({ cjs: main }, (module && { esm: module })),
22
- externalDependencies,
23
- hasModule: Boolean(module),
24
- platform,
25
- source,
26
- types,
27
- };
28
- };
29
- exports.getPackageMetadata = getPackageMetadata;
@@ -1,3 +0,0 @@
1
- import type { Plugin } from "esbuild";
2
- import type { TypeScriptConfiguration } from "./typescript";
3
- export declare const jsxPlugin: (tsConfig: TypeScriptConfiguration | null) => Plugin;
@@ -1,32 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.jsxPlugin = void 0;
13
- const helpers_1 = require("../helpers");
14
- const jsxPlugin = (tsConfig) => ({
15
- name: "jsx-runtime",
16
- setup(build) {
17
- build.onLoad({ filter: /\.(j|t)sx$/ }, ({ path }) => __awaiter(this, void 0, void 0, function* () {
18
- if (!tsConfig || !tsConfig.hasJsxRuntime)
19
- return;
20
- const module = tsConfig.jsxImportSource || "react";
21
- if (!(0, helpers_1.resolveModulePath)(`${module}/jsx-runtime`)) {
22
- throw new Error("Unable to find the JSX runtime.\nPotential solutions:\n1. If you rely on a non React runtime, set a valid `jsxImportSource` in your tsconfig\n2. Make sure that you've installed your project dependencies");
23
- }
24
- const content = yield (0, helpers_1.readFile)(path, "utf8");
25
- return {
26
- contents: `import * as React from "${module}";${content}`,
27
- loader: "tsx",
28
- };
29
- }));
30
- },
31
- });
32
- exports.jsxPlugin = jsxPlugin;
@@ -1,8 +0,0 @@
1
- export declare type TypeScriptConfiguration = {
2
- target?: string;
3
- jsxImportSource?: string;
4
- hasJsxRuntime?: boolean;
5
- };
6
- export declare const getTypeScriptConfiguration: () => Promise<TypeScriptConfiguration | null>;
7
- export declare const generateTypeScriptDeclaration: (outfile: string) => Promise<string>;
8
- export declare const hasTypeScript: (tsConfig: TypeScriptConfiguration | null) => tsConfig is TypeScriptConfiguration;
@@ -1,75 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
- return new (P || (P = Promise))(function (resolve, reject) {
28
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
- step((generator = generator.apply(thisArg, _arguments || [])).next());
32
- });
33
- };
34
- Object.defineProperty(exports, "__esModule", { value: true });
35
- exports.hasTypeScript = exports.generateTypeScriptDeclaration = exports.getTypeScriptConfiguration = void 0;
36
- const path_1 = require("path");
37
- const termost_1 = require("termost");
38
- const constants_1 = require("../constants");
39
- const getTypeScriptConfiguration = () => __awaiter(void 0, void 0, void 0, function* () {
40
- var _a;
41
- try {
42
- const ts = yield Promise.resolve().then(() => __importStar(require("typescript")));
43
- const { jsx, jsxImportSource, target } = ts.parseJsonConfigFileContent(require((0, path_1.resolve)(constants_1.CWD, "tsconfig.json")), ts.sys, constants_1.CWD).options;
44
- const esbuildTarget = !target ||
45
- [ts.ScriptTarget.ESNext, ts.ScriptTarget.Latest].includes(target)
46
- ? "esnext"
47
- : (_a = ts.ScriptTarget[target]) === null || _a === void 0 ? void 0 : _a.toLowerCase();
48
- const hasJsxRuntime = jsx !== undefined &&
49
- [ts.JsxEmit["ReactJSX"], ts.JsxEmit["ReactJSXDev"]].includes(jsx);
50
- return {
51
- target: esbuildTarget,
52
- jsxImportSource,
53
- hasJsxRuntime,
54
- };
55
- }
56
- catch (error) {
57
- return null;
58
- }
59
- });
60
- exports.getTypeScriptConfiguration = getTypeScriptConfiguration;
61
- const generateTypeScriptDeclaration = (outfile) => __awaiter(void 0, void 0, void 0, function* () {
62
- const outdir = (0, path_1.dirname)(outfile);
63
- try {
64
- yield termost_1.helpers.exec(`tsc --declaration --emitDeclarationOnly --incremental --removeComments false --outDir ${outdir}`, { cwd: constants_1.CWD });
65
- return outdir;
66
- }
67
- catch (error) {
68
- throw new Error(`Type generation failed:\n${error}`);
69
- }
70
- });
71
- exports.generateTypeScriptDeclaration = generateTypeScriptDeclaration;
72
- const hasTypeScript = (tsConfig) => {
73
- return Boolean(tsConfig);
74
- };
75
- exports.hasTypeScript = hasTypeScript;
@@ -1,3 +0,0 @@
1
- export declare type ProgramContext = {
2
- noCheck: boolean;
3
- };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });