Skip to content

Commit 569bdef

Browse files
committed
Merge branch 'master' of https://github.com/rollup/rollup into sync-ed98e082
2 parents ccfc0ae + ed98e08 commit 569bdef

File tree

84 files changed

+1599
-40
lines changed

Some content is hidden

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

84 files changed

+1599
-40
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# rollup changelog
22

3+
## 4.23.0
4+
5+
_2024-10-01_
6+
7+
### Features
8+
9+
- Collect all emitted names and originalFileNames for assets (#5686)
10+
11+
### Pull Requests
12+
13+
- [#5686](https://github.com/rollup/rollup/pull/5686): Add names and originalFileNames to assets (@lukastaegert)
14+
315
## 4.22.5
416

517
_2024-09-27_

browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rollup/browser",
3-
"version": "4.22.5",
3+
"version": "4.23.0",
44
"description": "Next-generation ES module bundler browser build",
55
"main": "dist/rollup.browser.js",
66
"module": "dist/es/rollup.browser.js",

docs/configuration-options/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,8 +574,8 @@ export default {
574574

575575
```typescript
576576
interface PreRenderedAsset {
577-
name: string | undefined;
578-
originalFileName: string | null;
577+
names: string[];
578+
originalFileNames: string[];
579579
source: string | Uint8Array;
580580
type: 'asset';
581581
}

docs/plugin-development/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -908,9 +908,9 @@ function augmentWithDatePlugin() {
908908
```typescript
909909
interface OutputAsset {
910910
fileName: string;
911-
name: string | undefined;
911+
names: string[];
912912
needsCodeReference: boolean;
913-
originalFileName: string | null;
913+
originalFileNames: string[];
914914
source: string | Uint8Array;
915915
type: 'asset';
916916
}

0 commit comments

Comments
 (0)