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.
Files changed (32) hide show
  1. package/bin/cli.mjs +2 -0
  2. package/dist/{cjs/cli.cjs → cli.cjs} +4 -5
  3. package/dist/cli.mjs +1829 -0
  4. package/dist/{cjs/experimental-index.cjs → experimental-index.cjs} +3 -3
  5. package/dist/{esm/experimental-index.mjs → experimental-index.mjs} +13 -2
  6. package/dist/{cjs/index.cjs → index.cjs} +2 -2
  7. package/dist/index.mjs +5 -0
  8. package/dist/{cjs/parallel-plugin-worker.cjs → parallel-plugin-worker.cjs} +3 -4
  9. package/dist/parallel-plugin-worker.mjs +47 -0
  10. package/dist/parse-ast-index.cjs +4 -0
  11. package/dist/parse-ast-index.mjs +4 -0
  12. package/dist/shared/chunk-DUYDk_2O.mjs +33 -0
  13. package/dist/shared/{parse-ast-index-DNOUVcBy.mjs → parse-ast-index-5U4JtZBO.mjs} +108 -110
  14. package/dist/shared/{parse-ast-index-0ei4fTjl.cjs → parse-ast-index-BfKb9n4T.cjs} +1 -1
  15. package/dist/shared/prompt-W5YHe0v6.mjs +854 -0
  16. package/dist/shared/{src-BPcsb-4N.cjs → src-B0nHUJsv.cjs} +26 -7
  17. package/dist/shared/src-kyIoH7SP.mjs +4319 -0
  18. package/dist/tsconfig.tsbuildinfo +1 -1
  19. package/dist/types/api/rolldown/rolldown-build.d.ts +1 -0
  20. package/dist/types/binding.d.ts +8 -2
  21. package/dist/types/options/input-options.d.ts +5 -1
  22. package/package.json +32 -31
  23. package/bin/cli.js +0 -2
  24. package/dist/cjs/parse-ast-index.cjs +0 -4
  25. package/dist/esm/cli.mjs +0 -1755
  26. package/dist/esm/index.mjs +0 -4
  27. package/dist/esm/parallel-plugin-worker.mjs +0 -41
  28. package/dist/esm/parse-ast-index.mjs +0 -3
  29. package/dist/shared/prompt-C6jWWCza.mjs +0 -852
  30. package/dist/shared/src-DllTyFDp.mjs +0 -2888
  31. /package/dist/{cjs/parallel-plugin.cjs → parallel-plugin.cjs} +0 -0
  32. /package/dist/{esm/parallel-plugin.mjs → parallel-plugin.mjs} +0 -0
package/bin/cli.mjs ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import '../dist/cli.mjs';
@@ -1,7 +1,6 @@
1
- "use strict";
2
- const require_chunk = require('../shared/chunk-qZFfknuJ.cjs');
3
- const require_src = require('../shared/src-BPcsb-4N.cjs');
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("../shared/prompt-_yrURmmm.cjs");
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