Skip to content

Commit

Permalink
fix: move @types/svg-path-parser to dev dependencies (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
toomuchdesign authored Nov 2, 2024
1 parent 27be871 commit bb7ff83
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 8.4.1

### Bugfixes

- move `@types/svg-path-parser` to dev dependencies

# 8.4.0

- Improve `labelRenderProps` by using TS generics
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

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

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@
"react": "^16.8.0 || ^17.0.0 || ^18",
"react-dom": "^16.8.0 || ^17.0.0 || ^18"
},
"dependencies": {
"@types/svg-path-parser": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.24.7",
Expand All @@ -79,6 +76,7 @@
"@types/node": "^22.8.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/svg-path-parser": "^1.1.6",
"babel-jest": "^29.7.0",
"es-check": "^7.2.1",
"jest": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { babel } from '@rollup/plugin-babel';
let pkg = require('./package.json');
let external = []
// Mark dependencies and peerDependencies as external
.concat(Object.keys(pkg.dependencies), Object.keys(pkg.peerDependencies));
.concat(Object.keys(pkg.peerDependencies));
const extensions = ['.js', '.ts', '.tsx'];

let plugins = [
Expand Down

0 comments on commit bb7ff83

Please sign in to comment.