Skip to content

Commit d12fba9

Browse files
authored
Merge pull request #60 from ApplauseOSS/update-dependencies
Update dependencies
2 parents 5255707 + d08bffe commit d12fba9

File tree

5 files changed

+454
-445
lines changed

5 files changed

+454
-445
lines changed

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121

2222
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Use Node.js ${{matrix.node_version}}
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2727
with:
2828
node-version: ${{matrix.node_version}}
2929
cache: 'yarn'

dist/index.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
"reporter"
4545
],
4646
"devDependencies": {
47-
"@eslint/js": "^9.18.0",
47+
"@eslint/js": "^9.28.0",
4848
"@rollup/plugin-json": "^6.0.0",
4949
"@rollup/plugin-node-resolve": "15.3.0",
5050
"@rollup/plugin-terser": "^0.4.3",
51-
"@rollup/plugin-typescript": "^11.1.3",
51+
"@rollup/plugin-typescript": "^12.1.2",
5252
"@tsconfig/node20": "^20.1.4",
5353
"@types/mocha": "^10.0.9",
5454
"@types/node": "^22.10.5",

rollup.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const options = [
3434
// The dts plugin will handle exporting all types in a single dts file, so we do not need to export the declarations in this case
3535
typescript({
3636
declaration: false,
37+
declarationDir: 'dist/types',
3738
})
3839
]
3940
},
@@ -65,6 +66,7 @@ const options = [
6566
// The dts plugin will handle exporting all types in a single dts file, so we do not need to export the declarations in this case
6667
typescript({
6768
declaration: false,
69+
declarationDir: 'dist/types',
6870
})
6971
]
7072
},

0 commit comments

Comments
 (0)