Skip to content

Commit

Permalink
chore(beep): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jul 30, 2020
1 parent 13526d6 commit a4c2e7a
Show file tree
Hide file tree
Showing 4 changed files with 832 additions and 85 deletions.
9 changes: 6 additions & 3 deletions packages/beep/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "ava --verbose",
"lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
"lint:docs": "prettier --single-quote --write README.md",
"lint:docs": "prettier --single-quote --arrow-parens avoid --write README.md",
"lint:js": "eslint --fix --cache lib test types --ext .js,.ts",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"test": "ava"
Expand All @@ -39,10 +39,13 @@
"rollup": "^1.20.0||^2.0.0"
},
"devDependencies": {
"rollup": "^2.0.0",
"strip-ansi": "^5.2.0"
"rollup": "^2.23.0",
"strip-ansi": "^6.0.0"
},
"ava": {
"babel": {
"compileEnhancements": false
},
"files": [
"!**/fixtures/**",
"!**/helpers/**",
Expand Down
3 changes: 2 additions & 1 deletion packages/beep/test/fixtures/error.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ module.exports = {
input: 'fixtures/error.js',
output: {
file: 'output/bundle.js',
format: 'cjs'
format: 'cjs',
exports: 'auto'
},
plugins: [beep()]
};
3 changes: 2 additions & 1 deletion packages/beep/test/fixtures/pass.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ module.exports = {
input: 'fixtures/pass.js',
output: {
file: 'output/bundle.js',
format: 'cjs'
format: 'cjs',
exports: 'auto'
},
plugins: [beep()]
};

0 comments on commit a4c2e7a

Please sign in to comment.