rolldown 0.10.1 → 0.10.2

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 (46) hide show
  1. package/dist/chunks/prompt.cjs +6 -1
  2. package/dist/chunks/prompt.cjs.map +1 -1
  3. package/dist/chunks/prompt.mjs +6 -1
  4. package/dist/chunks/prompt.mjs.map +1 -1
  5. package/dist/cli.cjs +7 -2
  6. package/dist/cli.cjs.map +1 -1
  7. package/dist/cli.mjs +7 -2
  8. package/dist/cli.mjs.map +1 -1
  9. package/dist/index.cjs +13 -1
  10. package/dist/index.cjs.map +1 -1
  11. package/dist/index.d.cts +10 -1099
  12. package/dist/index.d.mts +10 -1099
  13. package/dist/index.d.ts +10 -1099
  14. package/dist/index.mjs +13 -2
  15. package/dist/index.mjs.map +1 -1
  16. package/dist/parallel-plugin-worker.cjs +34 -0
  17. package/dist/parallel-plugin-worker.cjs.map +1 -0
  18. package/dist/parallel-plugin-worker.d.cts +2 -0
  19. package/dist/parallel-plugin-worker.d.mts +2 -0
  20. package/dist/parallel-plugin-worker.d.ts +2 -0
  21. package/dist/parallel-plugin-worker.mjs +32 -0
  22. package/dist/parallel-plugin-worker.mjs.map +1 -0
  23. package/dist/parallel-plugin.cjs +8 -0
  24. package/dist/parallel-plugin.cjs.map +1 -0
  25. package/dist/parallel-plugin.d.cts +12 -0
  26. package/dist/parallel-plugin.d.mts +12 -0
  27. package/dist/parallel-plugin.d.ts +12 -0
  28. package/dist/parallel-plugin.mjs +6 -0
  29. package/dist/parallel-plugin.mjs.map +1 -0
  30. package/dist/shared/rolldown-binding.wasi.cjs +109 -0
  31. package/dist/shared/rolldown.1ea1dc1e.d.cts +1160 -0
  32. package/dist/shared/rolldown.1ea1dc1e.d.mts +1160 -0
  33. package/dist/shared/rolldown.1ea1dc1e.d.ts +1160 -0
  34. package/dist/shared/rolldown.4d4592d7.cjs +348 -0
  35. package/dist/shared/rolldown.4d4592d7.cjs.map +1 -0
  36. package/dist/shared/{rolldown.ee864e8d.cjs → rolldown.65028ebe.cjs} +126 -307
  37. package/dist/shared/rolldown.65028ebe.cjs.map +1 -0
  38. package/dist/shared/{rolldown.04482f71.mjs → rolldown.7d1ce9fc.mjs} +122 -304
  39. package/dist/shared/rolldown.7d1ce9fc.mjs.map +1 -0
  40. package/dist/shared/rolldown.b914368a.mjs +340 -0
  41. package/dist/shared/rolldown.b914368a.mjs.map +1 -0
  42. package/dist/shared/wasi-worker-browser.mjs +40 -0
  43. package/dist/shared/wasi-worker.mjs +60 -0
  44. package/package.json +41 -21
  45. package/dist/shared/rolldown.04482f71.mjs.map +0 -1
  46. package/dist/shared/rolldown.ee864e8d.cjs.map +0 -1
package/dist/cli.mjs CHANGED
@@ -4,8 +4,13 @@ import { formatWithOptions } from 'node:util';
4
4
  import * as tty from 'node:tty';
5
5
  import { pathToFileURL } from 'url';
6
6
  import { performance } from 'node:perf_hooks';
7
- import { r as rolldown, a as arraify } from './shared/rolldown.04482f71.mjs';
7
+ import 'node:url';
8
+ import { r as rolldown, a as arraify } from './shared/rolldown.b914368a.mjs';
9
+ import './shared/rolldown.7d1ce9fc.mjs';
8
10
  import 'fs';
11
+ import 'path';
12
+ import 'node:worker_threads';
13
+ import 'node:os';
9
14
 
10
15
  const LogLevels = {
11
16
  silent: Number.NEGATIVE_INFINITY,
@@ -1886,7 +1891,7 @@ function withTrailingSlash(path) {
1886
1891
  return path;
1887
1892
  }
1888
1893
 
1889
- const version = "0.10.1";
1894
+ const version = "0.10.2";
1890
1895
  const description = "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.";
1891
1896
 
1892
1897
  const DEFAULT_CONFIG_FILENAME = "rolldown.config.js";