rolldown 1.0.0-beta.7-commit.25f3c61 → 1.0.0-beta.7-commit.170d158
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/bin/cli.mjs +2 -0
- package/dist/{cjs/cli.cjs → cli.cjs} +4 -5
- package/dist/cli.mjs +1829 -0
- package/dist/{cjs/experimental-index.cjs → experimental-index.cjs} +3 -3
- package/dist/{esm/experimental-index.mjs → experimental-index.mjs} +13 -2
- package/dist/{cjs/index.cjs → index.cjs} +2 -2
- package/dist/index.mjs +5 -0
- package/dist/{cjs/parallel-plugin-worker.cjs → parallel-plugin-worker.cjs} +3 -4
- package/dist/parallel-plugin-worker.mjs +47 -0
- package/dist/parse-ast-index.cjs +4 -0
- package/dist/parse-ast-index.mjs +4 -0
- package/dist/shared/chunk-DUYDk_2O.mjs +33 -0
- package/dist/shared/{parse-ast-index-DNOUVcBy.mjs → parse-ast-index-5U4JtZBO.mjs} +108 -110
- package/dist/shared/{parse-ast-index-0ei4fTjl.cjs → parse-ast-index-BfKb9n4T.cjs} +1 -1
- package/dist/shared/prompt-W5YHe0v6.mjs +854 -0
- package/dist/shared/{src-BPcsb-4N.cjs → src-B0nHUJsv.cjs} +26 -7
- package/dist/shared/src-kyIoH7SP.mjs +4319 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/api/rolldown/rolldown-build.d.ts +1 -0
- package/dist/types/binding.d.ts +8 -2
- package/dist/types/options/input-options.d.ts +5 -1
- package/package.json +32 -31
- package/bin/cli.js +0 -2
- package/dist/cjs/parse-ast-index.cjs +0 -4
- package/dist/esm/cli.mjs +0 -1755
- package/dist/esm/index.mjs +0 -4
- package/dist/esm/parallel-plugin-worker.mjs +0 -41
- package/dist/esm/parse-ast-index.mjs +0 -3
- package/dist/shared/prompt-C6jWWCza.mjs +0 -852
- package/dist/shared/src-DllTyFDp.mjs +0 -2888
- /package/dist/{cjs/parallel-plugin.cjs → parallel-plugin.cjs} +0 -0
- /package/dist/{esm/parallel-plugin.mjs → parallel-plugin.mjs} +0 -0
package/bin/cli.mjs
ADDED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
const
|
|
3
|
-
const
|
|
4
|
-
const require_parse_ast_index = require('../shared/parse-ast-index-0ei4fTjl.cjs');
|
|
1
|
+
const require_chunk = require('./shared/chunk-qZFfknuJ.cjs');
|
|
2
|
+
const require_src = require('./shared/src-B0nHUJsv.cjs');
|
|
3
|
+
const require_parse_ast_index = require('./shared/parse-ast-index-BfKb9n4T.cjs');
|
|
5
4
|
const node_fs = require_chunk.__toESM(require("node:fs"));
|
|
6
5
|
const node_path = require_chunk.__toESM(require("node:path"));
|
|
7
6
|
const node_process = require_chunk.__toESM(require("node:process"));
|
|
@@ -958,7 +957,7 @@ function createConsola(options$1 = {}) {
|
|
|
958
957
|
stdout: process.stdout,
|
|
959
958
|
stderr: process.stderr,
|
|
960
959
|
prompt: (...args) => Promise.resolve().then(function() {
|
|
961
|
-
return require("
|
|
960
|
+
return require("./shared/prompt-_yrURmmm.cjs");
|
|
962
961
|
}).then((m) => m.prompt(...args)),
|
|
963
962
|
reporters: options$1.reporters || [options$1.fancy ?? !(T || R) ? new FancyReporter() : new BasicReporter()],
|
|
964
963
|
...options$1
|