rolldown 0.12.2-snapshot-33fca46-20240830003232 → 0.12.2-snapshot-8b7734e-20240831003056
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/cjs/cli.cjs +3 -1
- package/dist/esm/cli.mjs +3 -1
- package/dist/types/binding.d.ts +1 -0
- package/package.json +14 -14
package/dist/cjs/cli.cjs
CHANGED
|
@@ -158,7 +158,9 @@ async function bundleInner(options$1, cliOptions) {
|
|
|
158
158
|
const endTime = performance.now();
|
|
159
159
|
printBundleOutputPretty(bundleOutput);
|
|
160
160
|
logger.log(``);
|
|
161
|
-
|
|
161
|
+
const duration = endTime - startTime;
|
|
162
|
+
const spent = duration < 1000 ? `${duration.toFixed(2)} ms` : `${(duration / 1000).toFixed(2)} s`;
|
|
163
|
+
logger.success(`Finished in ${bold(spent)}`);
|
|
162
164
|
}
|
|
163
165
|
function printBundleOutputPretty(output) {
|
|
164
166
|
const outputEntries = collectOutputEntries(output.output);
|
package/dist/esm/cli.mjs
CHANGED
|
@@ -157,7 +157,9 @@ async function bundleInner(options$1, cliOptions) {
|
|
|
157
157
|
const endTime = performance.now();
|
|
158
158
|
printBundleOutputPretty(bundleOutput);
|
|
159
159
|
logger.log(``);
|
|
160
|
-
|
|
160
|
+
const duration = endTime - startTime;
|
|
161
|
+
const spent = duration < 1000 ? `${duration.toFixed(2)} ms` : `${(duration / 1000).toFixed(2)} s`;
|
|
162
|
+
logger.success(`Finished in ${bold(spent)}`);
|
|
161
163
|
}
|
|
162
164
|
function printBundleOutputPretty(output) {
|
|
163
165
|
const outputEntries = collectOutputEntries(output.output);
|
package/dist/types/binding.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rolldown",
|
|
3
|
-
"version": "0.12.2-snapshot-
|
|
3
|
+
"version": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
4
4
|
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",
|
|
5
5
|
"homepage": "https://rolldown.rs/",
|
|
6
6
|
"repository": {
|
|
@@ -103,21 +103,21 @@
|
|
|
103
103
|
"why-is-node-running": "^3.0.0",
|
|
104
104
|
"zod-to-json-schema": "^3.23.2",
|
|
105
105
|
"@rolldown/testing": "0.0.1",
|
|
106
|
-
"rolldown": "0.12.2-snapshot-
|
|
106
|
+
"rolldown": "0.12.2-snapshot-8b7734e-20240831003056"
|
|
107
107
|
},
|
|
108
108
|
"optionalDependencies": {
|
|
109
|
-
"@rolldown/binding-darwin-
|
|
110
|
-
"@rolldown/binding-darwin-
|
|
111
|
-
"@rolldown/binding-freebsd-x64": "0.12.2-snapshot-
|
|
112
|
-
"@rolldown/binding-linux-
|
|
113
|
-
"@rolldown/binding-linux-arm64-
|
|
114
|
-
"@rolldown/binding-linux-
|
|
115
|
-
"@rolldown/binding-linux-x64-
|
|
116
|
-
"@rolldown/binding-linux-x64-
|
|
117
|
-
"@rolldown/binding-wasm32-wasi": "0.12.2-snapshot-
|
|
118
|
-
"@rolldown/binding-win32-
|
|
119
|
-
"@rolldown/binding-win32-
|
|
120
|
-
"@rolldown/binding-win32-x64-msvc": "0.12.2-snapshot-
|
|
109
|
+
"@rolldown/binding-darwin-arm64": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
110
|
+
"@rolldown/binding-darwin-x64": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
111
|
+
"@rolldown/binding-freebsd-x64": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
112
|
+
"@rolldown/binding-linux-arm-gnueabihf": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
113
|
+
"@rolldown/binding-linux-arm64-gnu": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
114
|
+
"@rolldown/binding-linux-arm64-musl": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
115
|
+
"@rolldown/binding-linux-x64-gnu": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
116
|
+
"@rolldown/binding-linux-x64-musl": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
117
|
+
"@rolldown/binding-wasm32-wasi": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
118
|
+
"@rolldown/binding-win32-ia32-msvc": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
119
|
+
"@rolldown/binding-win32-arm64-msvc": "0.12.2-snapshot-8b7734e-20240831003056",
|
|
120
|
+
"@rolldown/binding-win32-x64-msvc": "0.12.2-snapshot-8b7734e-20240831003056"
|
|
121
121
|
},
|
|
122
122
|
"scripts": {
|
|
123
123
|
"# Scrips for binding #": "_",
|