Skip to content

Commit

Permalink
Fix type of SourceMap.version (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens authored and mourner committed Feb 19, 2019
1 parent 751f1c0 commit b6fd47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -21,7 +21,7 @@ export interface DecodedSourceMap {
export class SourceMap {
constructor(properties: DecodedSourceMap);

version: string;
version: number;
file: string;
sources: string[];
sourcesContent: string[];
Expand Down

2 comments on commit b6fd47d

@lukastaegert
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mourner @Rich-Harris @alangpierce Would it be possible to publish this change? This would solve rollup/rollup#2967

@mourner
Copy link
Collaborator

@mourner mourner commented on b6fd47d Jul 1, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lukastaegert sorry for the delay, published as v0.25.3.

Please sign in to comment.