Skip to content

Commit

Permalink
chore(virtual): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jul 28, 2020
1 parent 6cdb2fb commit 69346a0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 61 deletions.
15 changes: 9 additions & 6 deletions packages/virtual/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@
"homepage": "https://github.com/rollup/plugins/tree/master/packages/virtual#readme",
"bugs": "https://github.com/rollup/rollup-plugin-virtual/issues",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "pnpm run build && pnpm run lint",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "pnpm run test -- --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 --write README.md",
"lint:js": "eslint --fix --cache src test --ext .js,.ts",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"lint:package": "prettier --write package.json",
"prebuild": "del-cli dist",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run lint",
Expand All @@ -44,16 +45,18 @@
"rollup": "^1.20.0||^2.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.0.0",
"rollup": "^2.0.0"
"@rollup/plugin-node-resolve": "^8.4.0",
"rollup": "^2.23.0"
},
"ava": {
"babel": {
"compileEnhancements": false
},
"files": [
"!**/fixtures/**",
"!**/helpers/**",
"!**/recipes/**",
"!**/types.ts"
]
},
"module": "dist/index.es.js"
}
}
2 changes: 1 addition & 1 deletion packages/virtual/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
plugins: [resolve()],
external: ['path'],
output: [
{ format: 'cjs', file: pkg.main },
{ format: 'cjs', file: pkg.main, exports: 'auto' },
{ format: 'esm', file: pkg.module }
]
};
58 changes: 4 additions & 54 deletions pnpm-lock.yaml

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

0 comments on commit 69346a0

Please sign in to comment.