You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: add vscode configuration
* feat: add comparisson based on vscode setting
* fix: correct typehint for version map
* chore: change config version to level and update config description
* style: remove semicolon in getPackageInfo.ts
Copy file name to clipboardExpand all lines: package.json
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -64,5 +64,23 @@
64
64
},
65
65
"dependencies": {
66
66
"semver": "^7.3.2"
67
+
},
68
+
"contributes": {
69
+
"configuration": {
70
+
"type": "object",
71
+
"title": "npm Outdated",
72
+
"properties": {
73
+
"npm-outdated.level": {
74
+
"type": "string",
75
+
"default": "patch",
76
+
"enum": [
77
+
"major",
78
+
"minor",
79
+
"patch"
80
+
],
81
+
"markdownDescription": "Minimum semver bump required for a package to display as outdated. See npm's [Semver docs](https://docs.npmjs.com/cli/v6/using-npm/semver) for more details."
0 commit comments