-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update latest rollup version to 2 (#9)
* update latest rollup version to 2 * drop support for node.js v8
- Loading branch information
Showing
7 changed files
with
2,044 additions
and
2,149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
const { rollup } = require('rollup'); | ||
const tests = require('./tests'); | ||
|
||
describe('rollup-plugin-vuedoc with latest rollup', tests(rollup)); | ||
describe('rollup-plugin-vuedoc with latest rollup', tests(rollup, { | ||
assetObject: () => expect.objectContaining({ type: 'asset' }), | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
const { rollup } = require('rollup-1.19.2'); | ||
const tests = require('./tests'); | ||
|
||
describe('rollup-plugin-vuedoc with legacy rollup (v1.19.2)', tests(rollup)); | ||
describe('rollup-plugin-vuedoc with legacy rollup (v1.19.2)', tests(rollup, { | ||
assetObject: () => expect.objectContaining({ isAsset: true }), | ||
})); |
Oops, something went wrong.