From bfa62ba522f89729bd9f2121e608c0afb59d2a83 Mon Sep 17 00:00:00 2001 From: Rogier Spieker Date: Fri, 22 Aug 2025 18:09:27 +0200 Subject: [PATCH 1/2] updated dependencies --- CHANGELOG.md | 2 ++ package.json | 24 ++++++++++++------------ tsconfig.json | 7 +++---- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e061454..223a536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Added ### Changed +- updated dependencies + ### Removed ## [2.1.2] - 2023-10-27 diff --git a/package.json b/package.json index 17f5748..fb2af03 100644 --- a/package.json +++ b/package.json @@ -57,21 +57,21 @@ "node": ">=12" }, "devDependencies": { - "@rollup/plugin-commonjs": "^25.0.7", - "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-commonjs": "^28.0.6", + "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", - "@rollup/plugin-typescript": "^11.1.5", - "@types/tape": "^5.6.3", - "nyc": "^15.1.0", - "rollup": "^4.1.4", - "rollup-plugin-dts": "^6.1.0", + "@rollup/plugin-typescript": "^12.1.4", + "@types/tape": "^5.8.1", + "nyc": "^17.1.0", + "rollup": "^4.47.1", + "rollup-plugin-dts": "^6.2.3", "run-script-os": "^1.1.6", - "tap-arc": "^1.1.0", - "tape": "^5.7.2", + "tap-arc": "^1.3.2", + "tape": "^5.9.0", "template-literal-each": "^3.0.1", - "ts-node": "^10.9.1", - "tslib": "^2.6.2", - "typescript": "^5.2.2" + "ts-node": "^10.9.2", + "tslib": "^2.8.1", + "typescript": "^5.9.2" }, "dependencies": { "@konfirm/alphabet": "^3.0.2" diff --git a/tsconfig.json b/tsconfig.json index b06276c..afd3756 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,9 +5,8 @@ "declaration": false, "strict": true, "moduleResolution": "node", - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, + "allowSyntheticDefaultImports": true }, - "include": [ - "./source" - ] + "include": ["./source"] } From d0778aece8b0e3cddce449d0c21906b8475e602d Mon Sep 17 00:00:00 2001 From: Rogier Spieker Date: Fri, 22 Aug 2025 20:57:03 +0200 Subject: [PATCH 2/2] update nodejs versions to only the currently supported versions --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f86813b..3ac859c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 22 registry-url: https://registry.npmjs.org/ - run: npm install - run: npm run test:pretty diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2941ca0..5c0bfee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,9 +27,9 @@ jobs: - windows-latest - macos-latest node-version: - - 16.x - - 18.x - 20.x + - 22.x + - 24.x steps: - uses: actions/checkout@v4