Skip to content

Commit

Permalink
Fix issues with updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
axtgr committed Feb 28, 2024
1 parent 40f3773 commit 7177961
Show file tree
Hide file tree
Showing 4 changed files with 1,787 additions and 2,821 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"bench": "node bench/bench",
"lint": "eslint {src,test,bench}/*",
"format": "eslint --cache --fix {src,test,bench}/* && prettier --write **/*.md",
"test": "ts-node -T -r \"core-js/modules/es.symbol.async-iterator\" -I \" \" node_modules/pta/src/cli.js test/[!_]*.js"
"test": "ts-node -T -r \"core-js/modules/es.symbol.async-iterator\" -I \" \" node_modules/pta/src/cli.js test/[!_]*.mjs"
},
"husky": {
"hooks": {
Expand All @@ -41,7 +41,6 @@
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@wessberg/rollup-plugin-ts": "^1.3.5",
"benchmark": "^2.1.4",
"core-js": "^3.36.0",
"eslint": "^7.32.0",
Expand All @@ -57,8 +56,9 @@
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.4.5",
"ts-node": "^9.1.1",
"ts-transform-default-export": "^1.0.3",
"typescript": "^4.9.5"
"typescript": "~4.7.0"
}
}
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import del from 'rollup-plugin-delete'
import { terser } from 'rollup-plugin-terser'
import typescript from '@wessberg/rollup-plugin-ts'
import typescript from 'rollup-plugin-ts'
import cleanup from 'rollup-plugin-cleanup'
import transformDefaultExport from 'ts-transform-default-export'

Expand Down
2 changes: 1 addition & 1 deletion test/index.js → test/index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import wcmatch from '../build'
import wcmatch from '../build/index.es.mjs'

export default function (t) {
t.test('Basic', (t) => {
Expand Down
Loading

0 comments on commit 7177961

Please sign in to comment.