-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default export (fixes #6), warn on rollup < 1.0.0
- Loading branch information
Showing
7 changed files
with
61 additions
and
8 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
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,6 +1,6 @@ | ||
{ | ||
"name": "rollup-plugin-analyzer", | ||
"version": "2.1.0", | ||
"version": "3.0.0", | ||
"description": "Mad metrics for your rollup bundles, know all the things", | ||
"main": "index.js", | ||
"module": "module.js", | ||
|
@@ -9,8 +9,8 @@ | |
"module.js" | ||
], | ||
"scripts": { | ||
"test": "rollup -c && ava --verbose --failFast --serial", | ||
"precommit": "rollup -c && ava && git add index.js", | ||
"test": "node ./node_modules/rollup/bin/rollup -c && ava --verbose --failFast --serial", | ||
"precommit": "node ./node_modules/rollup/bin/rollup -c && ava && git add index.js", | ||
"changelog": "auto-changelog -u -l 50 && git add CHANGELOG.md" | ||
}, | ||
"repository": { | ||
|
@@ -42,6 +42,7 @@ | |
"ava": "^1.0.1", | ||
"husky": "^1.3.1", | ||
"rollup": "npm:rollup@latest", | ||
"rollup60": "npm:[email protected]", | ||
"rollup100": "npm:[email protected]" | ||
}, | ||
"dependencies": {} | ||
|
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 |
---|---|---|
|
@@ -2783,6 +2783,14 @@ rimraf@^2.2.8, rimraf@^2.6.1: | |
"@types/node" "*" | ||
acorn "^6.0.4" | ||
|
||
"rollup60@npm:[email protected]": | ||
version "0.60.7" | ||
resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.60.7.tgz#2b62ef9306f719b1ab85a7814b3e6596ac51fae8" | ||
integrity sha512-Uj5I1A2PnDgA79P+v1dsNs1IHVydNgeJdKWRfoEJJdNMmyx07TRYqUtPUINaZ/gDusncFy1SZsT3lJnBBI8CGw== | ||
dependencies: | ||
"@types/estree" "0.0.39" | ||
"@types/node" "*" | ||
|
||
run-node@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz#46b50b946a2aa2d4947ae1d886e9856fd9cabe5e" | ||
|