update npm-check-updates and set a cooldown (#1820)

This commit is contained in:
Cory LaViska
2025-11-24 15:58:08 -05:00
committed by GitHub
parent ed3cb6d782
commit fa558eeda0
2 changed files with 20 additions and 4 deletions

19
package-lock.json generated
View File

@@ -14029,7 +14029,8 @@
"devDependencies": { "devDependencies": {
"@wc-toolkit/jsx-types": "^1.3.0", "@wc-toolkit/jsx-types": "^1.3.0",
"eleventy-plugin-git-commit-date": "^0.1.3", "eleventy-plugin-git-commit-date": "^0.1.3",
"esbuild": "^0.25.11" "esbuild": "^0.25.11",
"npm-check-updates": "^19.1.2"
}, },
"engines": { "engines": {
"node": ">=14.17.0" "node": ">=14.17.0"
@@ -14037,7 +14038,7 @@
}, },
"packages/webawesome-pro": { "packages/webawesome-pro": {
"name": "@shoelace-style/webawesome-pro", "name": "@shoelace-style/webawesome-pro",
"version": "3.0.0-beta.6", "version": "3.0.0",
"dependencies": { "dependencies": {
"@ctrl/tinycolor": "4.1.0", "@ctrl/tinycolor": "4.1.0",
"@floating-ui/dom": "^1.6.13", "@floating-ui/dom": "^1.6.13",
@@ -14966,6 +14967,20 @@
"engines": { "engines": {
"node": "^18 || >=20" "node": "^18 || >=20"
} }
},
"packages/webawesome/node_modules/npm-check-updates": {
"version": "19.1.2",
"resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-19.1.2.tgz",
"integrity": "sha512-FNeFCVgPOj0fz89hOpGtxP2rnnRHR7hD2E8qNU8SMWfkyDZXA/xpgjsL3UMLSo3F/K13QvJDnbxPngulNDDo/g==",
"dev": true,
"bin": {
"ncu": "build/cli.js",
"npm-check-updates": "build/cli.js"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.12.1"
}
} }
} }
} }

View File

@@ -64,7 +64,7 @@
"spellcheck": "cspell \"**/*.{js,ts,json,html,css,md}\" --no-progress --config=\"../../cspell.json\"", "spellcheck": "cspell \"**/*.{js,ts,json,html,css,md}\" --no-progress --config=\"../../cspell.json\"",
"verify": "npm run prettier && npm run build && npm run test", "verify": "npm run prettier && npm run build && npm run test",
"prepublishOnly": "npm run verify", "prepublishOnly": "npm run verify",
"check-updates": "npx npm-check-updates --interactive --format group", "check-updates": "npm-check-updates --cooldown 7 --interactive --format group",
"print-version": "echo $npm_package_version", "print-version": "echo $npm_package_version",
"tag-version": "git tag -a \"v$(npm run print-version | tail -n1)\" -m \"tag v$(npm run print-version | tail -n1)\"", "tag-version": "git tag -a \"v$(npm run print-version | tail -n1)\" -m \"tag v$(npm run print-version | tail -n1)\"",
"postversion": "npm run tag-version" "postversion": "npm run tag-version"
@@ -91,6 +91,7 @@
"devDependencies": { "devDependencies": {
"@wc-toolkit/jsx-types": "^1.3.0", "@wc-toolkit/jsx-types": "^1.3.0",
"eleventy-plugin-git-commit-date": "^0.1.3", "eleventy-plugin-git-commit-date": "^0.1.3",
"esbuild": "^0.25.11" "esbuild": "^0.25.11",
"npm-check-updates": "^19.1.2"
} }
} }