Skip to content

Commit

Permalink
chore: update deps and use node 20 (#592)
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz authored Aug 2, 2024
1 parent cf96051 commit fc5390f
Show file tree
Hide file tree
Showing 4 changed files with 443 additions and 476 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version: 20

- name: Install Node dependencies
run: yarn --frozen-lockfile
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.24.0",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.24.0",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.0",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3-dsv": "^3.0.7",
"d3-dsv": "^3.0.1",
"datalib": "^1.9.3",
"release-it": "^17.1.1",
"rollup": "^4.12.1",
"release-it": "^17.6.0",
"rollup": "^4.19.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-ts": "^3.4.5",
"terser": "^5.29.1",
"typescript": "^5.3.3"
"terser": "^5.31.3",
"typescript": "^5.5.4"
},
"scripts": {
"prebuild": "./scripts/make-url-index.sh > src/urls.ts",
Expand Down
3 changes: 2 additions & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { readFile } from 'fs/promises';
import json from "@rollup/plugin-json";
import resolve from '@rollup/plugin-node-resolve';
import terser from "@rollup/plugin-terser";
import bundleSize from "rollup-plugin-bundle-size";
import ts from "rollup-plugin-ts";

import pkg from './package.json' assert { type: 'json' };
const pkg = JSON.parse(await readFile('./package.json'));

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

0 comments on commit fc5390f

Please sign in to comment.