Skip to content

Commit 0b25eab

Browse files
committed
chore(dsv): update dependencies
1 parent 62c3bf9 commit 0b25eab

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

packages/dsv/package.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111
"homepage": "https://github.com/rollup/plugins/tree/master/packages/dsv#readme",
1212
"bugs": "https://github.com/rollup/plugins/issues",
1313
"main": "dist/index.js",
14+
"module": "dist/index.es.js",
1415
"scripts": {
1516
"build": "rollup -c",
1617
"ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
1718
"ci:lint": "pnpm run build && pnpm run lint",
1819
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
1920
"ci:test": "pnpm run test -- --verbose",
2021
"lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
21-
"lint:docs": "prettier --single-quote --write README.md",
22+
"lint:docs": "prettier --single-quote --arrow-parens avoid --write README.md",
2223
"lint:js": "eslint --fix --cache src test --ext .js,.ts",
2324
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
2425
"prebuild": "del-cli dist",
@@ -33,21 +34,23 @@
3334
"LICENSE"
3435
],
3536
"dependencies": {
36-
"@rollup/pluginutils": "^3.0.4",
37+
"@rollup/pluginutils": "^3.1.0",
3738
"d3-dsv": "1.2.0",
3839
"tosource": "^1.0.0"
3940
},
4041
"devDependencies": {
41-
"del-cli": "^3.0.0",
42-
"rollup": "^2.0.0"
42+
"del-cli": "^3.0.1",
43+
"rollup": "^2.23.0"
4344
},
4445
"ava": {
46+
"babel": {
47+
"compileEnhancements": false
48+
},
4549
"files": [
4650
"!**/fixtures/**",
4751
"!**/helpers/**",
4852
"!**/recipes/**",
4953
"!**/types.ts"
5054
]
51-
},
52-
"module": "dist/index.es.js"
55+
}
5356
}

packages/dsv/rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
input: 'src/index.js',
55
external: [...Object.keys(pkg.dependencies), 'path'],
66
output: [
7-
{ file: pkg.main, format: 'cjs' },
7+
{ file: pkg.main, format: 'cjs', exports: 'auto' },
88
{ file: pkg.module, format: 'es' }
99
]
1010
};

0 commit comments

Comments
 (0)