Skip to content

Commit

Permalink
Update dependencies, resolves #2722 (#2728)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Feb 27, 2019
1 parent e9abb56 commit c1c30a5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 9 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -60,7 +60,7 @@
"dependencies": {
"@types/estree": "0.0.39",
"@types/node": "^11.9.5",
"acorn": "^6.1.0"
"acorn": "^6.1.1"
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
Expand Down Expand Up @@ -97,7 +97,7 @@
"pretty-ms": "^4.0.0",
"remap-istanbul": "^0.13.0",
"require-relative": "^0.8.7",
"rollup": "^1.2.4",
"rollup": "^1.3.1",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
Expand Down
12 changes: 12 additions & 0 deletions test/function/samples/export-default-exported-id/_config.js
@@ -0,0 +1,12 @@
const assert = require('assert');

module.exports = {
description: 'exports an id that is also a default export',
options: {
output: { exports: 'named' }
},
exports(exports) {
assert.ok(new exports.default().ok);
assert.ok(new exports.Image().ok);
}
};
7 changes: 7 additions & 0 deletions test/function/samples/export-default-exported-id/main.js
@@ -0,0 +1,7 @@
export default class Image {
constructor() {
this.ok = true;
}
}

export { Image }

0 comments on commit c1c30a5

Please sign in to comment.