create-microact-app 1.0.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/index.js +95 -0
- package/package.json +21 -0
- package/templates/vanilla/.github/workflows/deploy.yml +38 -0
- package/templates/vanilla/index.html +13 -0
- package/templates/vanilla/node_modules/.package-lock.json +207 -0
- package/templates/vanilla/node_modules/@esbuild/darwin-x64/README.md +3 -0
- package/templates/vanilla/node_modules/@esbuild/darwin-x64/bin/esbuild +0 -0
- package/templates/vanilla/node_modules/@esbuild/darwin-x64/package.json +17 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/README.md +154 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js +1749 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js.map +1 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js +1743 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js.map +1 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js +2 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js.map +1 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.html +13 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.js +63 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/package.json +38 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/rollup.config.cjs +30 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Component.js +831 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/src/DOMUpdater.js +320 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/src/EventBus.js +123 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Router.js +253 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/src/UpdateScheduler.js +218 -0
- package/templates/vanilla/node_modules/@monygroupcorp/microact/src/index.js +6 -0
- package/templates/vanilla/node_modules/esbuild/LICENSE.md +21 -0
- package/templates/vanilla/node_modules/esbuild/README.md +3 -0
- package/templates/vanilla/node_modules/esbuild/bin/esbuild +0 -0
- package/templates/vanilla/node_modules/esbuild/install.js +287 -0
- package/templates/vanilla/node_modules/esbuild/lib/main.d.ts +660 -0
- package/templates/vanilla/node_modules/esbuild/lib/main.js +2393 -0
- package/templates/vanilla/node_modules/esbuild/package.json +42 -0
- package/templates/vanilla/node_modules/nanoid/LICENSE +20 -0
- package/templates/vanilla/node_modules/nanoid/README.md +39 -0
- package/templates/vanilla/node_modules/nanoid/async/index.browser.cjs +69 -0
- package/templates/vanilla/node_modules/nanoid/async/index.browser.js +34 -0
- package/templates/vanilla/node_modules/nanoid/async/index.cjs +71 -0
- package/templates/vanilla/node_modules/nanoid/async/index.d.ts +56 -0
- package/templates/vanilla/node_modules/nanoid/async/index.js +35 -0
- package/templates/vanilla/node_modules/nanoid/async/index.native.js +26 -0
- package/templates/vanilla/node_modules/nanoid/async/package.json +12 -0
- package/templates/vanilla/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/templates/vanilla/node_modules/nanoid/index.browser.cjs +72 -0
- package/templates/vanilla/node_modules/nanoid/index.browser.js +34 -0
- package/templates/vanilla/node_modules/nanoid/index.cjs +85 -0
- package/templates/vanilla/node_modules/nanoid/index.d.cts +91 -0
- package/templates/vanilla/node_modules/nanoid/index.d.ts +91 -0
- package/templates/vanilla/node_modules/nanoid/index.js +45 -0
- package/templates/vanilla/node_modules/nanoid/nanoid.js +1 -0
- package/templates/vanilla/node_modules/nanoid/non-secure/index.cjs +34 -0
- package/templates/vanilla/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/templates/vanilla/node_modules/nanoid/non-secure/index.js +21 -0
- package/templates/vanilla/node_modules/nanoid/non-secure/package.json +6 -0
- package/templates/vanilla/node_modules/nanoid/package.json +89 -0
- package/templates/vanilla/node_modules/nanoid/url-alphabet/index.cjs +7 -0
- package/templates/vanilla/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/templates/vanilla/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/templates/vanilla/node_modules/picocolors/LICENSE +15 -0
- package/templates/vanilla/node_modules/picocolors/README.md +21 -0
- package/templates/vanilla/node_modules/picocolors/package.json +25 -0
- package/templates/vanilla/node_modules/picocolors/picocolors.browser.js +4 -0
- package/templates/vanilla/node_modules/picocolors/picocolors.d.ts +5 -0
- package/templates/vanilla/node_modules/picocolors/picocolors.js +75 -0
- package/templates/vanilla/node_modules/picocolors/types.d.ts +51 -0
- package/templates/vanilla/node_modules/postcss/LICENSE +20 -0
- package/templates/vanilla/node_modules/postcss/README.md +29 -0
- package/templates/vanilla/node_modules/postcss/lib/at-rule.d.ts +140 -0
- package/templates/vanilla/node_modules/postcss/lib/at-rule.js +25 -0
- package/templates/vanilla/node_modules/postcss/lib/comment.d.ts +68 -0
- package/templates/vanilla/node_modules/postcss/lib/comment.js +13 -0
- package/templates/vanilla/node_modules/postcss/lib/container.d.ts +483 -0
- package/templates/vanilla/node_modules/postcss/lib/container.js +447 -0
- package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
- package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.js +133 -0
- package/templates/vanilla/node_modules/postcss/lib/declaration.d.ts +151 -0
- package/templates/vanilla/node_modules/postcss/lib/declaration.js +24 -0
- package/templates/vanilla/node_modules/postcss/lib/document.d.ts +69 -0
- package/templates/vanilla/node_modules/postcss/lib/document.js +33 -0
- package/templates/vanilla/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/templates/vanilla/node_modules/postcss/lib/fromJSON.js +54 -0
- package/templates/vanilla/node_modules/postcss/lib/input.d.ts +227 -0
- package/templates/vanilla/node_modules/postcss/lib/input.js +265 -0
- package/templates/vanilla/node_modules/postcss/lib/lazy-result.d.ts +190 -0
- package/templates/vanilla/node_modules/postcss/lib/lazy-result.js +550 -0
- package/templates/vanilla/node_modules/postcss/lib/list.d.ts +60 -0
- package/templates/vanilla/node_modules/postcss/lib/list.js +58 -0
- package/templates/vanilla/node_modules/postcss/lib/map-generator.js +368 -0
- package/templates/vanilla/node_modules/postcss/lib/no-work-result.d.ts +46 -0
- package/templates/vanilla/node_modules/postcss/lib/no-work-result.js +138 -0
- package/templates/vanilla/node_modules/postcss/lib/node.d.ts +556 -0
- package/templates/vanilla/node_modules/postcss/lib/node.js +449 -0
- package/templates/vanilla/node_modules/postcss/lib/parse.d.ts +9 -0
- package/templates/vanilla/node_modules/postcss/lib/parse.js +42 -0
- package/templates/vanilla/node_modules/postcss/lib/parser.js +611 -0
- package/templates/vanilla/node_modules/postcss/lib/postcss.d.mts +69 -0
- package/templates/vanilla/node_modules/postcss/lib/postcss.d.ts +458 -0
- package/templates/vanilla/node_modules/postcss/lib/postcss.js +101 -0
- package/templates/vanilla/node_modules/postcss/lib/postcss.mjs +30 -0
- package/templates/vanilla/node_modules/postcss/lib/previous-map.d.ts +81 -0
- package/templates/vanilla/node_modules/postcss/lib/previous-map.js +144 -0
- package/templates/vanilla/node_modules/postcss/lib/processor.d.ts +115 -0
- package/templates/vanilla/node_modules/postcss/lib/processor.js +67 -0
- package/templates/vanilla/node_modules/postcss/lib/result.d.ts +205 -0
- package/templates/vanilla/node_modules/postcss/lib/result.js +42 -0
- package/templates/vanilla/node_modules/postcss/lib/root.d.ts +87 -0
- package/templates/vanilla/node_modules/postcss/lib/root.js +61 -0
- package/templates/vanilla/node_modules/postcss/lib/rule.d.ts +126 -0
- package/templates/vanilla/node_modules/postcss/lib/rule.js +27 -0
- package/templates/vanilla/node_modules/postcss/lib/stringifier.d.ts +46 -0
- package/templates/vanilla/node_modules/postcss/lib/stringifier.js +353 -0
- package/templates/vanilla/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/templates/vanilla/node_modules/postcss/lib/stringify.js +11 -0
- package/templates/vanilla/node_modules/postcss/lib/symbols.js +5 -0
- package/templates/vanilla/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/templates/vanilla/node_modules/postcss/lib/tokenize.js +266 -0
- package/templates/vanilla/node_modules/postcss/lib/warn-once.js +13 -0
- package/templates/vanilla/node_modules/postcss/lib/warning.d.ts +147 -0
- package/templates/vanilla/node_modules/postcss/lib/warning.js +37 -0
- package/templates/vanilla/node_modules/postcss/package.json +88 -0
- package/templates/vanilla/node_modules/rollup/LICENSE.md +695 -0
- package/templates/vanilla/node_modules/rollup/README.md +125 -0
- package/templates/vanilla/node_modules/rollup/dist/bin/rollup +1715 -0
- package/templates/vanilla/node_modules/rollup/dist/es/getLogFilter.js +64 -0
- package/templates/vanilla/node_modules/rollup/dist/es/package.json +1 -0
- package/templates/vanilla/node_modules/rollup/dist/es/rollup.js +17 -0
- package/templates/vanilla/node_modules/rollup/dist/es/shared/node-entry.js +27273 -0
- package/templates/vanilla/node_modules/rollup/dist/es/shared/watch.js +4857 -0
- package/templates/vanilla/node_modules/rollup/dist/getLogFilter.d.ts +5 -0
- package/templates/vanilla/node_modules/rollup/dist/getLogFilter.js +69 -0
- package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.d.ts +20 -0
- package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.js +29 -0
- package/templates/vanilla/node_modules/rollup/dist/rollup.d.ts +1012 -0
- package/templates/vanilla/node_modules/rollup/dist/rollup.js +31 -0
- package/templates/vanilla/node_modules/rollup/dist/shared/fsevents-importer.js +37 -0
- package/templates/vanilla/node_modules/rollup/dist/shared/index.js +4571 -0
- package/templates/vanilla/node_modules/rollup/dist/shared/loadConfigFile.js +546 -0
- package/templates/vanilla/node_modules/rollup/dist/shared/rollup.js +27351 -0
- package/templates/vanilla/node_modules/rollup/dist/shared/watch-cli.js +561 -0
- package/templates/vanilla/node_modules/rollup/dist/shared/watch-proxy.js +87 -0
- package/templates/vanilla/node_modules/rollup/dist/shared/watch.js +316 -0
- package/templates/vanilla/node_modules/rollup/package.json +181 -0
- package/templates/vanilla/node_modules/source-map-js/LICENSE +28 -0
- package/templates/vanilla/node_modules/source-map-js/README.md +765 -0
- package/templates/vanilla/node_modules/source-map-js/lib/array-set.js +121 -0
- package/templates/vanilla/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/templates/vanilla/node_modules/source-map-js/lib/base64.js +67 -0
- package/templates/vanilla/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/templates/vanilla/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/templates/vanilla/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/templates/vanilla/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- package/templates/vanilla/node_modules/source-map-js/lib/source-node.js +413 -0
- package/templates/vanilla/node_modules/source-map-js/lib/util.js +594 -0
- package/templates/vanilla/node_modules/source-map-js/package.json +71 -0
- package/templates/vanilla/node_modules/source-map-js/source-map.d.ts +104 -0
- package/templates/vanilla/node_modules/source-map-js/source-map.js +8 -0
- package/templates/vanilla/node_modules/vite/LICENSE.md +3396 -0
- package/templates/vanilla/node_modules/vite/README.md +20 -0
- package/templates/vanilla/node_modules/vite/bin/openChrome.applescript +95 -0
- package/templates/vanilla/node_modules/vite/bin/vite.js +61 -0
- package/templates/vanilla/node_modules/vite/client.d.ts +281 -0
- package/templates/vanilla/node_modules/vite/dist/client/client.mjs +725 -0
- package/templates/vanilla/node_modules/vite/dist/client/client.mjs.map +1 -0
- package/templates/vanilla/node_modules/vite/dist/client/env.mjs +30 -0
- package/templates/vanilla/node_modules/vite/dist/client/env.mjs.map +1 -0
- package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-7ec6f216.js +914 -0
- package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-827b23df.js +66713 -0
- package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-c423598f.js +561 -0
- package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f0c7dae0.js +7930 -0
- package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f1e8587f.js +7646 -0
- package/templates/vanilla/node_modules/vite/dist/node/cli.js +929 -0
- package/templates/vanilla/node_modules/vite/dist/node/constants.js +130 -0
- package/templates/vanilla/node_modules/vite/dist/node/index.d.ts +3548 -0
- package/templates/vanilla/node_modules/vite/dist/node/index.js +158 -0
- package/templates/vanilla/node_modules/vite/dist/node-cjs/publicUtils.cjs +4555 -0
- package/templates/vanilla/node_modules/vite/index.cjs +34 -0
- package/templates/vanilla/node_modules/vite/package.json +173 -0
- package/templates/vanilla/node_modules/vite/types/customEvent.d.ts +35 -0
- package/templates/vanilla/node_modules/vite/types/hmrPayload.d.ts +61 -0
- package/templates/vanilla/node_modules/vite/types/hot.d.ts +32 -0
- package/templates/vanilla/node_modules/vite/types/importGlob.d.ts +97 -0
- package/templates/vanilla/node_modules/vite/types/importMeta.d.ts +26 -0
- package/templates/vanilla/node_modules/vite/types/metadata.d.ts +10 -0
- package/templates/vanilla/node_modules/vite/types/package.json +4 -0
- package/templates/vanilla/package-lock.json +589 -0
- package/templates/vanilla/package.json +17 -0
- package/templates/vanilla/src/components/App.js +60 -0
- package/templates/vanilla/src/components/Card.js +21 -0
- package/templates/vanilla/src/components/Hero.js +15 -0
- package/templates/vanilla/src/components/InteractiveDemo.js +59 -0
- package/templates/vanilla/src/main.js +9 -0
- package/templates/vanilla/src/style/main.css +172 -0
- package/templates/vanilla/vite.config.js +8 -0
- package/templates/web3/.env.example +15 -0
- package/templates/web3/.github/workflows/deploy.yml +38 -0
- package/templates/web3/README.md +33 -0
- package/templates/web3/contracts/foundry.toml +11 -0
- package/templates/web3/contracts/script/Deploy.s.sol +13 -0
- package/templates/web3/contracts/src/Counter.sol +21 -0
- package/templates/web3/index.html +13 -0
- package/templates/web3/package.json +25 -0
- package/templates/web3/scripts/chain-start.mjs +305 -0
- package/templates/web3/scripts/chain-stop.mjs +34 -0
- package/templates/web3/scripts/deploy.mjs +155 -0
- package/templates/web3/scripts/setup.mjs +42 -0
- package/templates/web3/src/components/App.js +49 -0
- package/templates/web3/src/components/CounterCard.js +111 -0
- package/templates/web3/src/main.js +54 -0
- package/templates/web3/src/style/main.css +345 -0
- package/templates/web3/vite.config.js +29 -0
|
@@ -0,0 +1,546 @@
|
|
|
1
|
+
/*
|
|
2
|
+
@license
|
|
3
|
+
Rollup.js v3.29.4
|
|
4
|
+
Sat, 21 Sep 2024 06:29:06 GMT - commit 2ef77c00ec2635d42697cff2c0567ccc8db34fb4
|
|
5
|
+
|
|
6
|
+
https://github.com/rollup/rollup
|
|
7
|
+
|
|
8
|
+
Released under the MIT License.
|
|
9
|
+
*/
|
|
10
|
+
'use strict';
|
|
11
|
+
|
|
12
|
+
const promises = require('node:fs/promises');
|
|
13
|
+
const node_path = require('node:path');
|
|
14
|
+
const process$1 = require('node:process');
|
|
15
|
+
const node_url = require('node:url');
|
|
16
|
+
const rollup = require('./rollup.js');
|
|
17
|
+
const getLogFilter_js = require('../getLogFilter.js');
|
|
18
|
+
|
|
19
|
+
function batchWarnings(command) {
|
|
20
|
+
const silent = !!command.silent;
|
|
21
|
+
const logFilter = generateLogFilter(command);
|
|
22
|
+
let count = 0;
|
|
23
|
+
const deferredWarnings = new Map();
|
|
24
|
+
let warningOccurred = false;
|
|
25
|
+
const add = (warning) => {
|
|
26
|
+
count += 1;
|
|
27
|
+
warningOccurred = true;
|
|
28
|
+
if (silent)
|
|
29
|
+
return;
|
|
30
|
+
if (warning.code in deferredHandlers) {
|
|
31
|
+
rollup.getOrCreate(deferredWarnings, warning.code, rollup.getNewArray).push(warning);
|
|
32
|
+
}
|
|
33
|
+
else if (warning.code in immediateHandlers) {
|
|
34
|
+
immediateHandlers[warning.code](warning);
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
title(warning.message);
|
|
38
|
+
defaultBody(warning);
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
return {
|
|
42
|
+
add,
|
|
43
|
+
get count() {
|
|
44
|
+
return count;
|
|
45
|
+
},
|
|
46
|
+
flush() {
|
|
47
|
+
if (count === 0 || silent)
|
|
48
|
+
return;
|
|
49
|
+
const codes = [...deferredWarnings.keys()].sort((a, b) => deferredWarnings.get(b).length - deferredWarnings.get(a).length);
|
|
50
|
+
for (const code of codes) {
|
|
51
|
+
deferredHandlers[code](deferredWarnings.get(code));
|
|
52
|
+
}
|
|
53
|
+
deferredWarnings.clear();
|
|
54
|
+
count = 0;
|
|
55
|
+
},
|
|
56
|
+
log(level, log) {
|
|
57
|
+
if (!logFilter(log))
|
|
58
|
+
return;
|
|
59
|
+
switch (level) {
|
|
60
|
+
case rollup.LOGLEVEL_WARN: {
|
|
61
|
+
return add(log);
|
|
62
|
+
}
|
|
63
|
+
case rollup.LOGLEVEL_DEBUG: {
|
|
64
|
+
if (!silent) {
|
|
65
|
+
rollup.stderr(rollup.bold(rollup.blue(log.message)));
|
|
66
|
+
defaultBody(log);
|
|
67
|
+
}
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
70
|
+
default: {
|
|
71
|
+
if (!silent) {
|
|
72
|
+
rollup.stderr(rollup.bold(rollup.cyan(log.message)));
|
|
73
|
+
defaultBody(log);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
get warningOccurred() {
|
|
79
|
+
return warningOccurred;
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
const immediateHandlers = {
|
|
84
|
+
MISSING_NODE_BUILTINS(warning) {
|
|
85
|
+
title(`Missing shims for Node.js built-ins`);
|
|
86
|
+
rollup.stderr(`Creating a browser bundle that depends on ${rollup.printQuotedStringList(warning.ids)}. You might need to include https://github.com/FredKSchott/rollup-plugin-polyfill-node`);
|
|
87
|
+
},
|
|
88
|
+
UNKNOWN_OPTION(warning) {
|
|
89
|
+
title(`You have passed an unrecognized option`);
|
|
90
|
+
rollup.stderr(warning.message);
|
|
91
|
+
}
|
|
92
|
+
};
|
|
93
|
+
const deferredHandlers = {
|
|
94
|
+
CIRCULAR_DEPENDENCY(warnings) {
|
|
95
|
+
title(`Circular dependenc${warnings.length > 1 ? 'ies' : 'y'}`);
|
|
96
|
+
const displayed = warnings.length > 5 ? warnings.slice(0, 3) : warnings;
|
|
97
|
+
for (const warning of displayed) {
|
|
98
|
+
rollup.stderr(warning.ids.map(rollup.relativeId).join(' -> '));
|
|
99
|
+
}
|
|
100
|
+
if (warnings.length > displayed.length) {
|
|
101
|
+
rollup.stderr(`...and ${warnings.length - displayed.length} more`);
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
EMPTY_BUNDLE(warnings) {
|
|
105
|
+
title(`Generated${warnings.length === 1 ? ' an' : ''} empty ${warnings.length > 1 ? 'chunks' : 'chunk'}`);
|
|
106
|
+
rollup.stderr(rollup.printQuotedStringList(warnings.map(warning => warning.names[0])));
|
|
107
|
+
},
|
|
108
|
+
EVAL(warnings) {
|
|
109
|
+
title('Use of eval is strongly discouraged');
|
|
110
|
+
info(rollup.getRollupUrl(rollup.URL_AVOIDING_EVAL));
|
|
111
|
+
showTruncatedWarnings(warnings);
|
|
112
|
+
},
|
|
113
|
+
MISSING_EXPORT(warnings) {
|
|
114
|
+
title('Missing exports');
|
|
115
|
+
info(rollup.getRollupUrl(rollup.URL_NAME_IS_NOT_EXPORTED));
|
|
116
|
+
for (const warning of warnings) {
|
|
117
|
+
rollup.stderr(rollup.bold(rollup.relativeId(warning.id)));
|
|
118
|
+
rollup.stderr(`${warning.binding} is not exported by ${rollup.relativeId(warning.exporter)}`);
|
|
119
|
+
rollup.stderr(rollup.gray(warning.frame));
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
MISSING_GLOBAL_NAME(warnings) {
|
|
123
|
+
title(`Missing global variable ${warnings.length > 1 ? 'names' : 'name'}`);
|
|
124
|
+
info(rollup.getRollupUrl(rollup.URL_OUTPUT_GLOBALS));
|
|
125
|
+
rollup.stderr(`Use "output.globals" to specify browser global variable names corresponding to external modules:`);
|
|
126
|
+
for (const warning of warnings) {
|
|
127
|
+
rollup.stderr(`${rollup.bold(warning.id)} (guessing "${warning.names[0]}")`);
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
MIXED_EXPORTS(warnings) {
|
|
131
|
+
title('Mixing named and default exports');
|
|
132
|
+
info(rollup.getRollupUrl(rollup.URL_OUTPUT_EXPORTS));
|
|
133
|
+
rollup.stderr(rollup.bold('The following entry modules are using named and default exports together:'));
|
|
134
|
+
warnings.sort((a, b) => (a.id < b.id ? -1 : 1));
|
|
135
|
+
const displayedWarnings = warnings.length > 5 ? warnings.slice(0, 3) : warnings;
|
|
136
|
+
for (const warning of displayedWarnings) {
|
|
137
|
+
rollup.stderr(rollup.relativeId(warning.id));
|
|
138
|
+
}
|
|
139
|
+
if (displayedWarnings.length < warnings.length) {
|
|
140
|
+
rollup.stderr(`...and ${warnings.length - displayedWarnings.length} other entry modules`);
|
|
141
|
+
}
|
|
142
|
+
rollup.stderr(`\nConsumers of your bundle will have to use chunk.default to access their default export, which may not be what you want. Use \`output.exports: "named"\` to disable this warning.`);
|
|
143
|
+
},
|
|
144
|
+
NAMESPACE_CONFLICT(warnings) {
|
|
145
|
+
title(`Conflicting re-exports`);
|
|
146
|
+
for (const warning of warnings) {
|
|
147
|
+
rollup.stderr(`"${rollup.bold(rollup.relativeId(warning.reexporter))}" re-exports "${warning.binding}" from both "${rollup.relativeId(warning.ids[0])}" and "${rollup.relativeId(warning.ids[1])}" (will be ignored).`);
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
PLUGIN_WARNING(warnings) {
|
|
151
|
+
const nestedByPlugin = nest(warnings, 'plugin');
|
|
152
|
+
for (const { key: plugin, items } of nestedByPlugin) {
|
|
153
|
+
const nestedByMessage = nest(items, 'message');
|
|
154
|
+
let lastUrl = '';
|
|
155
|
+
for (const { key: message, items } of nestedByMessage) {
|
|
156
|
+
title(`Plugin ${plugin}: ${message}`);
|
|
157
|
+
for (const warning of items) {
|
|
158
|
+
if (warning.url && warning.url !== lastUrl)
|
|
159
|
+
info((lastUrl = warning.url));
|
|
160
|
+
const id = warning.id || warning.loc?.file;
|
|
161
|
+
if (id) {
|
|
162
|
+
let loc = rollup.relativeId(id);
|
|
163
|
+
if (warning.loc) {
|
|
164
|
+
loc += `: (${warning.loc.line}:${warning.loc.column})`;
|
|
165
|
+
}
|
|
166
|
+
rollup.stderr(rollup.bold(loc));
|
|
167
|
+
}
|
|
168
|
+
if (warning.frame)
|
|
169
|
+
info(warning.frame);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
SOURCEMAP_BROKEN(warnings) {
|
|
175
|
+
title(`Broken sourcemap`);
|
|
176
|
+
info(rollup.getRollupUrl(rollup.URL_SOURCEMAP_IS_LIKELY_TO_BE_INCORRECT));
|
|
177
|
+
const plugins = [...new Set(warnings.map(({ plugin }) => plugin).filter(Boolean))];
|
|
178
|
+
rollup.stderr(`Plugins that transform code (such as ${rollup.printQuotedStringList(plugins)}) should generate accompanying sourcemaps.`);
|
|
179
|
+
},
|
|
180
|
+
THIS_IS_UNDEFINED(warnings) {
|
|
181
|
+
title('"this" has been rewritten to "undefined"');
|
|
182
|
+
info(rollup.getRollupUrl(rollup.URL_THIS_IS_UNDEFINED));
|
|
183
|
+
showTruncatedWarnings(warnings);
|
|
184
|
+
},
|
|
185
|
+
UNRESOLVED_IMPORT(warnings) {
|
|
186
|
+
title('Unresolved dependencies');
|
|
187
|
+
info(rollup.getRollupUrl(rollup.URL_TREATING_MODULE_AS_EXTERNAL_DEPENDENCY));
|
|
188
|
+
const dependencies = new Map();
|
|
189
|
+
for (const warning of warnings) {
|
|
190
|
+
rollup.getOrCreate(dependencies, rollup.relativeId(warning.exporter), rollup.getNewArray).push(rollup.relativeId(warning.id));
|
|
191
|
+
}
|
|
192
|
+
for (const [dependency, importers] of dependencies) {
|
|
193
|
+
rollup.stderr(`${rollup.bold(dependency)} (imported by ${rollup.printQuotedStringList(importers)})`);
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
UNUSED_EXTERNAL_IMPORT(warnings) {
|
|
197
|
+
title('Unused external imports');
|
|
198
|
+
for (const warning of warnings) {
|
|
199
|
+
rollup.stderr(warning.names +
|
|
200
|
+
' imported from external module "' +
|
|
201
|
+
warning.exporter +
|
|
202
|
+
'" but never used in ' +
|
|
203
|
+
rollup.printQuotedStringList(warning.ids.map(rollup.relativeId)) +
|
|
204
|
+
'.');
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
};
|
|
208
|
+
function defaultBody(log) {
|
|
209
|
+
if (log.url) {
|
|
210
|
+
info(rollup.getRollupUrl(log.url));
|
|
211
|
+
}
|
|
212
|
+
const id = log.loc?.file || log.id;
|
|
213
|
+
if (id) {
|
|
214
|
+
const loc = log.loc ? `${rollup.relativeId(id)} (${log.loc.line}:${log.loc.column})` : rollup.relativeId(id);
|
|
215
|
+
rollup.stderr(rollup.bold(rollup.relativeId(loc)));
|
|
216
|
+
}
|
|
217
|
+
if (log.frame)
|
|
218
|
+
info(log.frame);
|
|
219
|
+
}
|
|
220
|
+
function title(string_) {
|
|
221
|
+
rollup.stderr(rollup.bold(rollup.yellow(`(!) ${string_}`)));
|
|
222
|
+
}
|
|
223
|
+
function info(url) {
|
|
224
|
+
rollup.stderr(rollup.gray(url));
|
|
225
|
+
}
|
|
226
|
+
function nest(array, property) {
|
|
227
|
+
const nested = [];
|
|
228
|
+
const lookup = new Map();
|
|
229
|
+
for (const item of array) {
|
|
230
|
+
const key = item[property];
|
|
231
|
+
rollup.getOrCreate(lookup, key, () => {
|
|
232
|
+
const items = {
|
|
233
|
+
items: [],
|
|
234
|
+
key
|
|
235
|
+
};
|
|
236
|
+
nested.push(items);
|
|
237
|
+
return items;
|
|
238
|
+
}).items.push(item);
|
|
239
|
+
}
|
|
240
|
+
return nested;
|
|
241
|
+
}
|
|
242
|
+
function showTruncatedWarnings(warnings) {
|
|
243
|
+
const nestedByModule = nest(warnings, 'id');
|
|
244
|
+
const displayedByModule = nestedByModule.length > 5 ? nestedByModule.slice(0, 3) : nestedByModule;
|
|
245
|
+
for (const { key: id, items } of displayedByModule) {
|
|
246
|
+
rollup.stderr(rollup.bold(rollup.relativeId(id)));
|
|
247
|
+
rollup.stderr(rollup.gray(items[0].frame));
|
|
248
|
+
if (items.length > 1) {
|
|
249
|
+
rollup.stderr(`...and ${items.length - 1} other ${items.length > 2 ? 'occurrences' : 'occurrence'}`);
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
if (nestedByModule.length > displayedByModule.length) {
|
|
253
|
+
rollup.stderr(`\n...and ${nestedByModule.length - displayedByModule.length} other files`);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
function generateLogFilter(command) {
|
|
257
|
+
const filters = rollup.ensureArray(command.filterLogs).flatMap(filter => String(filter).split(','));
|
|
258
|
+
if (process.env.ROLLUP_FILTER_LOGS) {
|
|
259
|
+
filters.push(...process.env.ROLLUP_FILTER_LOGS.split(','));
|
|
260
|
+
}
|
|
261
|
+
return getLogFilter_js.getLogFilter(filters);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
const stdinName = '-';
|
|
265
|
+
let stdinResult = null;
|
|
266
|
+
function stdinPlugin(argument) {
|
|
267
|
+
const suffix = typeof argument == 'string' && argument.length > 0 ? '.' + argument : '';
|
|
268
|
+
return {
|
|
269
|
+
load(id) {
|
|
270
|
+
if (id === stdinName || id.startsWith(stdinName + '.')) {
|
|
271
|
+
return stdinResult || (stdinResult = readStdin());
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
name: 'stdin',
|
|
275
|
+
resolveId(id) {
|
|
276
|
+
if (id === stdinName) {
|
|
277
|
+
return id + suffix;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
function readStdin() {
|
|
283
|
+
return new Promise((resolve, reject) => {
|
|
284
|
+
const chunks = [];
|
|
285
|
+
process$1.stdin.setEncoding('utf8');
|
|
286
|
+
process$1.stdin
|
|
287
|
+
.on('data', chunk => chunks.push(chunk))
|
|
288
|
+
.on('end', () => {
|
|
289
|
+
const result = chunks.join('');
|
|
290
|
+
resolve(result);
|
|
291
|
+
})
|
|
292
|
+
.on('error', error => {
|
|
293
|
+
reject(error);
|
|
294
|
+
});
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
function waitForInputPlugin() {
|
|
299
|
+
return {
|
|
300
|
+
async buildStart(options) {
|
|
301
|
+
const inputSpecifiers = Array.isArray(options.input)
|
|
302
|
+
? options.input
|
|
303
|
+
: Object.keys(options.input);
|
|
304
|
+
let lastAwaitedSpecifier = null;
|
|
305
|
+
checkSpecifiers: while (true) {
|
|
306
|
+
for (const specifier of inputSpecifiers) {
|
|
307
|
+
if ((await this.resolve(specifier)) === null) {
|
|
308
|
+
if (lastAwaitedSpecifier !== specifier) {
|
|
309
|
+
rollup.stderr(`waiting for input ${rollup.bold(specifier)}...`);
|
|
310
|
+
lastAwaitedSpecifier = specifier;
|
|
311
|
+
}
|
|
312
|
+
await new Promise(resolve => setTimeout(resolve, 500));
|
|
313
|
+
continue checkSpecifiers;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
break;
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
name: 'wait-for-input'
|
|
320
|
+
};
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
async function addCommandPluginsToInputOptions(inputOptions, command) {
|
|
324
|
+
if (command.stdin !== false) {
|
|
325
|
+
inputOptions.plugins.push(stdinPlugin(command.stdin));
|
|
326
|
+
}
|
|
327
|
+
if (command.waitForBundleInput === true) {
|
|
328
|
+
inputOptions.plugins.push(waitForInputPlugin());
|
|
329
|
+
}
|
|
330
|
+
await addPluginsFromCommandOption(command.plugin, inputOptions);
|
|
331
|
+
}
|
|
332
|
+
async function addPluginsFromCommandOption(commandPlugin, inputOptions) {
|
|
333
|
+
if (commandPlugin) {
|
|
334
|
+
const plugins = await rollup.normalizePluginOption(commandPlugin);
|
|
335
|
+
for (const plugin of plugins) {
|
|
336
|
+
if (/[={}]/.test(plugin)) {
|
|
337
|
+
// -p plugin=value
|
|
338
|
+
// -p "{transform(c,i){...}}"
|
|
339
|
+
await loadAndRegisterPlugin(inputOptions, plugin);
|
|
340
|
+
}
|
|
341
|
+
else {
|
|
342
|
+
// split out plugins joined by commas
|
|
343
|
+
// -p node-resolve,commonjs,buble
|
|
344
|
+
for (const p of plugin.split(',')) {
|
|
345
|
+
await loadAndRegisterPlugin(inputOptions, p);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
async function loadAndRegisterPlugin(inputOptions, pluginText) {
|
|
352
|
+
let plugin = null;
|
|
353
|
+
let pluginArgument = undefined;
|
|
354
|
+
if (pluginText[0] === '{') {
|
|
355
|
+
// -p "{transform(c,i){...}}"
|
|
356
|
+
plugin = new Function('return ' + pluginText);
|
|
357
|
+
}
|
|
358
|
+
else {
|
|
359
|
+
const match = pluginText.match(/^([\w./:@\\^{|}-]+)(=(.*))?$/);
|
|
360
|
+
if (match) {
|
|
361
|
+
// -p plugin
|
|
362
|
+
// -p plugin=arg
|
|
363
|
+
pluginText = match[1];
|
|
364
|
+
pluginArgument = new Function('return ' + match[3])();
|
|
365
|
+
}
|
|
366
|
+
else {
|
|
367
|
+
throw new Error(`Invalid --plugin argument format: ${JSON.stringify(pluginText)}`);
|
|
368
|
+
}
|
|
369
|
+
if (!/^\.|^rollup-plugin-|[/@\\]/.test(pluginText)) {
|
|
370
|
+
// Try using plugin prefix variations first if applicable.
|
|
371
|
+
// Prefix order is significant - left has higher precedence.
|
|
372
|
+
for (const prefix of ['@rollup/plugin-', 'rollup-plugin-']) {
|
|
373
|
+
try {
|
|
374
|
+
plugin = await requireOrImport(prefix + pluginText);
|
|
375
|
+
break;
|
|
376
|
+
}
|
|
377
|
+
catch {
|
|
378
|
+
// if this does not work, we try requiring the actual name below
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
if (!plugin) {
|
|
383
|
+
try {
|
|
384
|
+
if (pluginText[0] == '.')
|
|
385
|
+
pluginText = node_path.resolve(pluginText);
|
|
386
|
+
// Windows absolute paths must be specified as file:// protocol URL
|
|
387
|
+
// Note that we do not have coverage for Windows-only code paths
|
|
388
|
+
else if (/^[A-Za-z]:\\/.test(pluginText)) {
|
|
389
|
+
pluginText = node_url.pathToFileURL(node_path.resolve(pluginText)).href;
|
|
390
|
+
}
|
|
391
|
+
plugin = await requireOrImport(pluginText);
|
|
392
|
+
}
|
|
393
|
+
catch (error) {
|
|
394
|
+
throw new Error(`Cannot load plugin "${pluginText}": ${error.message}.`);
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
// some plugins do not use `module.exports` for their entry point,
|
|
399
|
+
// in which case we try the named default export and the plugin name
|
|
400
|
+
if (typeof plugin === 'object') {
|
|
401
|
+
plugin = plugin.default || plugin[getCamelizedPluginBaseName(pluginText)];
|
|
402
|
+
}
|
|
403
|
+
if (!plugin) {
|
|
404
|
+
throw new Error(`Cannot find entry for plugin "${pluginText}". The plugin needs to export a function either as "default" or "${getCamelizedPluginBaseName(pluginText)}" for Rollup to recognize it.`);
|
|
405
|
+
}
|
|
406
|
+
inputOptions.plugins.push(typeof plugin === 'function' ? plugin.call(plugin, pluginArgument) : plugin);
|
|
407
|
+
}
|
|
408
|
+
function getCamelizedPluginBaseName(pluginText) {
|
|
409
|
+
return (pluginText.match(/(@rollup\/plugin-|rollup-plugin-)(.+)$/)?.[2] || pluginText)
|
|
410
|
+
.split(/[/\\]/)
|
|
411
|
+
.slice(-1)[0]
|
|
412
|
+
.split('.')[0]
|
|
413
|
+
.split('-')
|
|
414
|
+
.map((part, index) => (index === 0 || !part ? part : part[0].toUpperCase() + part.slice(1)))
|
|
415
|
+
.join('');
|
|
416
|
+
}
|
|
417
|
+
async function requireOrImport(pluginPath) {
|
|
418
|
+
try {
|
|
419
|
+
// eslint-disable-next-line unicorn/prefer-module
|
|
420
|
+
return require(pluginPath);
|
|
421
|
+
}
|
|
422
|
+
catch {
|
|
423
|
+
return import(pluginPath);
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
const loadConfigFile = async (fileName, commandOptions = {}, watchMode = false) => {
|
|
428
|
+
const configs = await getConfigList(getDefaultFromCjs(await getConfigFileExport(fileName, commandOptions, watchMode)), commandOptions);
|
|
429
|
+
const warnings = batchWarnings(commandOptions);
|
|
430
|
+
try {
|
|
431
|
+
const normalizedConfigs = [];
|
|
432
|
+
for (const config of configs) {
|
|
433
|
+
const options = await rollup.mergeOptions(config, watchMode, commandOptions, warnings.log);
|
|
434
|
+
await addCommandPluginsToInputOptions(options, commandOptions);
|
|
435
|
+
normalizedConfigs.push(options);
|
|
436
|
+
}
|
|
437
|
+
return { options: normalizedConfigs, warnings };
|
|
438
|
+
}
|
|
439
|
+
catch (error_) {
|
|
440
|
+
warnings.flush();
|
|
441
|
+
throw error_;
|
|
442
|
+
}
|
|
443
|
+
};
|
|
444
|
+
async function getConfigFileExport(fileName, commandOptions, watchMode) {
|
|
445
|
+
if (commandOptions.configPlugin || commandOptions.bundleConfigAsCjs) {
|
|
446
|
+
try {
|
|
447
|
+
return await loadTranspiledConfigFile(fileName, commandOptions);
|
|
448
|
+
}
|
|
449
|
+
catch (error_) {
|
|
450
|
+
if (error_.message.includes('not defined in ES module scope')) {
|
|
451
|
+
return rollup.error(rollup.logCannotBundleConfigAsEsm(error_));
|
|
452
|
+
}
|
|
453
|
+
throw error_;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
let cannotLoadEsm = false;
|
|
457
|
+
const handleWarning = (warning) => {
|
|
458
|
+
if (warning.message.includes('To load an ES module')) {
|
|
459
|
+
cannotLoadEsm = true;
|
|
460
|
+
}
|
|
461
|
+
};
|
|
462
|
+
process$1.on('warning', handleWarning);
|
|
463
|
+
try {
|
|
464
|
+
const fileUrl = node_url.pathToFileURL(fileName);
|
|
465
|
+
if (watchMode) {
|
|
466
|
+
// We are adding the current date to allow reloads in watch mode
|
|
467
|
+
fileUrl.search = `?${Date.now()}`;
|
|
468
|
+
}
|
|
469
|
+
return (await import(fileUrl.href)).default;
|
|
470
|
+
}
|
|
471
|
+
catch (error_) {
|
|
472
|
+
if (cannotLoadEsm) {
|
|
473
|
+
return rollup.error(rollup.logCannotLoadConfigAsCjs(error_));
|
|
474
|
+
}
|
|
475
|
+
if (error_.message.includes('not defined in ES module scope')) {
|
|
476
|
+
return rollup.error(rollup.logCannotLoadConfigAsEsm(error_));
|
|
477
|
+
}
|
|
478
|
+
throw error_;
|
|
479
|
+
}
|
|
480
|
+
finally {
|
|
481
|
+
process$1.off('warning', handleWarning);
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
function getDefaultFromCjs(namespace) {
|
|
485
|
+
return namespace.default || namespace;
|
|
486
|
+
}
|
|
487
|
+
async function loadTranspiledConfigFile(fileName, commandOptions) {
|
|
488
|
+
const { bundleConfigAsCjs, configPlugin, silent } = commandOptions;
|
|
489
|
+
const warnings = batchWarnings(commandOptions);
|
|
490
|
+
const inputOptions = {
|
|
491
|
+
external: (id) => (id[0] !== '.' && !node_path.isAbsolute(id)) || id.slice(-5, id.length) === '.json',
|
|
492
|
+
input: fileName,
|
|
493
|
+
onwarn: warnings.add,
|
|
494
|
+
plugins: [],
|
|
495
|
+
treeshake: false
|
|
496
|
+
};
|
|
497
|
+
await addPluginsFromCommandOption(configPlugin, inputOptions);
|
|
498
|
+
const bundle = await rollup.rollup(inputOptions);
|
|
499
|
+
const { output: [{ code }] } = await bundle.generate({
|
|
500
|
+
exports: 'named',
|
|
501
|
+
format: bundleConfigAsCjs ? 'cjs' : 'es',
|
|
502
|
+
plugins: [
|
|
503
|
+
{
|
|
504
|
+
name: 'transpile-import-meta',
|
|
505
|
+
resolveImportMeta(property, { moduleId }) {
|
|
506
|
+
if (property === 'url') {
|
|
507
|
+
return `'${node_url.pathToFileURL(moduleId).href}'`;
|
|
508
|
+
}
|
|
509
|
+
if (property == null) {
|
|
510
|
+
return `{url:'${node_url.pathToFileURL(moduleId).href}'}`;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
]
|
|
515
|
+
});
|
|
516
|
+
if (!silent && warnings.count > 0) {
|
|
517
|
+
rollup.stderr(rollup.bold(`loaded ${rollup.relativeId(fileName)} with warnings`));
|
|
518
|
+
warnings.flush();
|
|
519
|
+
}
|
|
520
|
+
return loadConfigFromWrittenFile(node_path.join(node_path.dirname(fileName), `rollup.config-${Date.now()}.${bundleConfigAsCjs ? 'cjs' : 'mjs'}`), code);
|
|
521
|
+
}
|
|
522
|
+
async function loadConfigFromWrittenFile(bundledFileName, bundledCode) {
|
|
523
|
+
await promises.writeFile(bundledFileName, bundledCode);
|
|
524
|
+
try {
|
|
525
|
+
return (await import(node_url.pathToFileURL(bundledFileName).href)).default;
|
|
526
|
+
}
|
|
527
|
+
finally {
|
|
528
|
+
// Not awaiting here saves some ms while potentially hiding a non-critical error
|
|
529
|
+
promises.unlink(bundledFileName);
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
async function getConfigList(configFileExport, commandOptions) {
|
|
533
|
+
const config = await (typeof configFileExport === 'function'
|
|
534
|
+
? configFileExport(commandOptions)
|
|
535
|
+
: configFileExport);
|
|
536
|
+
if (Object.keys(config).length === 0) {
|
|
537
|
+
return rollup.error(rollup.logMissingConfig());
|
|
538
|
+
}
|
|
539
|
+
return Array.isArray(config) ? config : [config];
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
exports.addCommandPluginsToInputOptions = addCommandPluginsToInputOptions;
|
|
543
|
+
exports.batchWarnings = batchWarnings;
|
|
544
|
+
exports.loadConfigFile = loadConfigFile;
|
|
545
|
+
exports.stdinName = stdinName;
|
|
546
|
+
//# sourceMappingURL=loadConfigFile.js.map
|