Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/rollup/rollup into sync-e…
Browse files Browse the repository at this point in the history
…d98e082
  • Loading branch information
docschina-bot committed Oct 1, 2024
2 parents ccfc0ae + ed98e08 commit 569bdef
Show file tree
Hide file tree
Showing 84 changed files with 1,599 additions and 40 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# rollup changelog

## 4.23.0

_2024-10-01_

### Features

- Collect all emitted names and originalFileNames for assets (#5686)

### Pull Requests

- [#5686](https://github.com/rollup/rollup/pull/5686): Add names and originalFileNames to assets (@lukastaegert)

## 4.22.5

_2024-09-27_
Expand Down
2 changes: 1 addition & 1 deletion browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rollup/browser",
"version": "4.22.5",
"version": "4.23.0",
"description": "Next-generation ES module bundler browser build",
"main": "dist/rollup.browser.js",
"module": "dist/es/rollup.browser.js",
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration-options/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -574,8 +574,8 @@ export default {

```typescript
interface PreRenderedAsset {
name: string | undefined;
originalFileName: string | null;
names: string[];
originalFileNames: string[];
source: string | Uint8Array;
type: 'asset';
}
Expand Down
4 changes: 2 additions & 2 deletions docs/plugin-development/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -908,9 +908,9 @@ function augmentWithDatePlugin() {
```typescript
interface OutputAsset {
fileName: string;
name: string | undefined;
names: string[];
needsCodeReference: boolean;
originalFileName: string | null;
originalFileNames: string[];
source: string | Uint8Array;
type: 'asset';
}
Expand Down
Loading

0 comments on commit 569bdef

Please sign in to comment.