Skip to content

Commit 0aae946

Browse files
committed
chore: upgrade rolldown
1 parent 9440739 commit 0aae946

File tree

147 files changed

+479
-426
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+479
-426
lines changed

pnpm-lock.yaml

Lines changed: 178 additions & 156 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ catalogs:
2525
bumpp: ^10.4.1
2626
dedent: ^1.7.2
2727
eslint: ^10.0.2
28-
memfs: ^4.56.10
28+
memfs: ^4.56.11
2929
pkg-types: ^2.3.0
3030
postcss: ^8.5.8
3131
postcss-import: ^16.1.1
@@ -74,7 +74,7 @@ catalogs:
7474
package-manager-detector: ^1.6.0
7575
picomatch: ^4.0.3
7676
postcss-load-config: ^6.0.1
77-
rolldown: 1.0.0-rc.6
77+
rolldown: 1.0.0-rc.7
7878
rolldown-plugin-dts: ^0.22.3
7979
semver: ^7.7.4
8080
tinyexec: ^1.0.2

tests/__snapshots__/alwaysBundle/should-bundle-dependencies-listed-in-alwaysBundle.snap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```mjs
44
//#region ../../../../node_modules/.pnpm/cac@7.0.0/node_modules/cac/dist/index.js
55
const cac = "[CAC CODE]";
6-
76
//#endregion
87
export { cac };
8+
99
```

tests/__snapshots__/banner-and-footer-option.snap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ export { foo };
1515
// js banner
1616
//#region index.ts
1717
const foo = 42;
18-
1918
//#endregion
2019
export { foo };
20+
2121
// js footer
2222
```

tests/__snapshots__/basic.snap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```mjs
44
//#region index.ts
55
console.log("Hello, world!");
6-
76
//#endregion
8-
export { };
7+
export {};
8+
99
```

tests/__snapshots__/bundle-dts.snap.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@ export { shared, str };
1515
```mjs
1616
//#region src/utils/types.ts
1717
let str = "hello";
18-
1918
//#endregion
2019
//#region src/utils/shared.ts
2120
let shared = 10;
22-
2321
//#endregion
2422
export { shared, str };
23+
2524
```

tests/__snapshots__/case-insensitivity/IMPORT-and-LAYER-are-case-insensitive.snap.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@
2222
## entry.mjs
2323

2424
```mjs
25-
export { };
25+
export {};
26+
2627
```

tests/__snapshots__/charset/charset-in-imported-files.snap.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
## style.mjs
99

1010
```mjs
11-
export { };
11+
export {};
12+
1213
```

tests/__snapshots__/cjs-default.snap.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
## index.cjs
22

33
```cjs
4-
54
//#region index.ts
65
function hello() {
76
console.log("Hello!");
87
}
9-
108
//#endregion
119
module.exports = hello;
10+
1211
```
1312

1413
## index.d.cts
@@ -35,7 +34,7 @@ export { hello as default };
3534
function hello() {
3635
console.log("Hello!");
3736
}
38-
3937
//#endregion
4038
export { hello as default };
39+
4140
```
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
## index.cjs
22

33
```cjs
4-
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
5-
4+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
65
//#region foo.ts
76
const foo = 1;
8-
97
//#endregion
108
exports.foo = foo;
9+
1110
```

0 commit comments

Comments
 (0)