Skip to content

Commit

Permalink
Fix lint error, update license
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Aug 21, 2019
1 parent fb6aa6d commit 54dfb28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,7 +1,7 @@
# rollup changelog

## 1.20.0
*2019-08.21*
*2019-08-21*

### Features
* Add augmentChunkHash plugin hook to be able to reflect changes in renderChunk in the chunk hash (#2921)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Expand Up @@ -58,7 +58,7 @@ Repository: https://github.com/adrianheine/acorn-import-meta
## acorn-walk
License: MIT
By: Marijn Haverbeke, Ingvar Stepanyan, Adrian Heine
Repository: git+https://github.com/acornjs/acorn.git
Repository: https://github.com/acornjs/acorn.git

> Copyright (C) 2012-2018 by various contributors (see AUTHORS)
>
Expand Down
2 changes: 1 addition & 1 deletion src/Graph.ts
Expand Up @@ -166,7 +166,7 @@ export default class Graph {
this.getModuleContext = () => this.context;
}

this.acornOptions = options.acorn ? Object.assign({}, options.acorn) : {};
this.acornOptions = options.acorn ? { ...options.acorn } : {};
const acornPluginsToInject = [];

acornPluginsToInject.push(injectImportMeta);
Expand Down

0 comments on commit 54dfb28

Please sign in to comment.