Skip to content

Commit

Permalink
Fix dependency range for Node types (#5370)
Browse files Browse the repository at this point in the history
* Limit version range for node types

Otherwise

* Unpin TypeScript plugin

which was not really pinned, but still
  • Loading branch information
lukastaegert committed Feb 2, 2024
1 parent 2abd46d commit 19fe138
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"@types/estree": "1.0.5"
},
"devDependenciesComments": {
"@rollup/plugin-typescript": "It appears that 11.1.3 breaks sourcemaps"
"@types/node": "Version 18.19.0 breaks chokidar and vite types"
},
"devDependencies": {
"@codemirror/commands": "^6.3.3",
Expand All @@ -126,12 +126,12 @@
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/pluginutils": "^5.1.0",
"@types/eslint": "^8.56.2",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10.0.6",
"@types/node": "^18.18.14",
"@types/node": "~18.18.14",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
Expand Down
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"platformAutomerge": true
},
{
"matchPackageNames": ["node", "npm", "fsevents", "@rollup/plugin-typescript"],
"matchPackageNames": ["node", "npm", "fsevents"],
"enabled": false
},
{
"matchPackageNames": ["@types/node"],
"matchUpdateTypes": ["major", "minor"],
"matchUpdateTypes": ["major", "minor", "lockFileMaintenance"],
"enabled": false
}

Expand Down

0 comments on commit 19fe138

Please sign in to comment.