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.
- package/dist/chunks/prompt.cjs +6 -1
- package/dist/chunks/prompt.cjs.map +1 -1
- package/dist/chunks/prompt.mjs +6 -1
- package/dist/chunks/prompt.mjs.map +1 -1
- package/dist/cli.cjs +7 -2
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +7 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/index.cjs +13 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -1099
- package/dist/index.d.mts +10 -1099
- package/dist/index.d.ts +10 -1099
- package/dist/index.mjs +13 -2
- package/dist/index.mjs.map +1 -1
- package/dist/parallel-plugin-worker.cjs +34 -0
- package/dist/parallel-plugin-worker.cjs.map +1 -0
- package/dist/parallel-plugin-worker.d.cts +2 -0
- package/dist/parallel-plugin-worker.d.mts +2 -0
- package/dist/parallel-plugin-worker.d.ts +2 -0
- package/dist/parallel-plugin-worker.mjs +32 -0
- package/dist/parallel-plugin-worker.mjs.map +1 -0
- package/dist/parallel-plugin.cjs +8 -0
- package/dist/parallel-plugin.cjs.map +1 -0
- package/dist/parallel-plugin.d.cts +12 -0
- package/dist/parallel-plugin.d.mts +12 -0
- package/dist/parallel-plugin.d.ts +12 -0
- package/dist/parallel-plugin.mjs +6 -0
- package/dist/parallel-plugin.mjs.map +1 -0
- package/dist/shared/rolldown-binding.wasi.cjs +109 -0
- package/dist/shared/rolldown.1ea1dc1e.d.cts +1160 -0
- package/dist/shared/rolldown.1ea1dc1e.d.mts +1160 -0
- package/dist/shared/rolldown.1ea1dc1e.d.ts +1160 -0
- package/dist/shared/rolldown.4d4592d7.cjs +348 -0
- package/dist/shared/rolldown.4d4592d7.cjs.map +1 -0
- package/dist/shared/{rolldown.ee864e8d.cjs → rolldown.65028ebe.cjs} +126 -307
- package/dist/shared/rolldown.65028ebe.cjs.map +1 -0
- package/dist/shared/{rolldown.04482f71.mjs → rolldown.7d1ce9fc.mjs} +122 -304
- package/dist/shared/rolldown.7d1ce9fc.mjs.map +1 -0
- package/dist/shared/rolldown.b914368a.mjs +340 -0
- package/dist/shared/rolldown.b914368a.mjs.map +1 -0
- package/dist/shared/wasi-worker-browser.mjs +40 -0
- package/dist/shared/wasi-worker.mjs +60 -0
- package/package.json +41 -21
- package/dist/shared/rolldown.04482f71.mjs.map +0 -1
- 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
|
|
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.
|
|
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";
|