Skip to content

Commit

Permalink
chore: switch to esm rollup, update deps, fix style of changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Feb 13, 2023
1 parent 45aee0e commit d15549f
Show file tree
Hide file tree
Showing 5 changed files with 290 additions and 387 deletions.
4 changes: 3 additions & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
"after:bump": "yarn build"
},
"plugins": {
"@release-it/conventional-changelog": {}
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md"
}
}
}
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v2.5.3 (Sun Oct 09 2022)
### v2.5.3 (Sun Oct 09 2022)

#### 🐛 Bug Fix

Expand All @@ -10,7 +10,7 @@

---

# v2.5.2 (Sun Oct 09 2022)
### v2.5.2 (Sun Oct 09 2022)

#### 🐛 Bug Fix

Expand All @@ -22,7 +22,7 @@

---

# v2.5.1 (Sat Oct 01 2022)
### v2.5.1 (Sat Oct 01 2022)

#### 🐛 Bug Fix

Expand All @@ -33,7 +33,7 @@

---

# v2.5.0 (Fri Sep 30 2022)
### v2.5.0 (Fri Sep 30 2022)

#### 🚀 Enhancement

Expand Down Expand Up @@ -61,7 +61,7 @@

---

# v2.4.0 (Thu Jul 14 2022)
### v2.4.0 (Thu Jul 14 2022)

:tada: This release contains work from new contributors! :tada:

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@
"data"
],
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.19.0",
"@babel/runtime": "^7.20.13",
"@release-it/conventional-changelog": "^5.1.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/d3-dsv": "^3.0.0",
"@types/d3-dsv": "^3.0.1",
"d3-dsv": "^3.0.1",
"datalib": "^1.9.3",
"release-it": "^15.6.0",
"rollup": "^2.79.1",
"rollup": "^3.15.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"terser": "^5.15.1",
"typescript": "^4.8.4"
"rollup-plugin-ts": "^3.2.0",
"terser": "^5.16.3",
"typescript": "^4.9.5"
},
"scripts": {
"prebuild": "./scripts/make-url-index.sh > src/urls.ts",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js → rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import bundleSize from "rollup-plugin-bundle-size";
import { terser } from "rollup-plugin-terser";
import ts from "rollup-plugin-ts";

const pkg = require('./package.json');
import pkg from './package.json' assert { type: 'json' };

const plugins = (browserslist, declaration) => [
resolve(),
Expand Down
Loading

0 comments on commit d15549f

Please sign in to comment.