1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

update dependencies (#211)

This commit is contained in:
shimataro 2022-10-30 21:57:29 +09:00 committed by GitHub
parent adea214356
commit 1926ba6435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9686 additions and 2265 deletions

File diff suppressed because it is too large Load diff

9381
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -31,16 +31,16 @@
"author": "shimataro", "author": "shimataro",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@actions/core": "1.4.0", "@actions/core": "1.10.0",
"@types/node": "16.4.10", "@types/node": "18.11.7",
"@typescript-eslint/eslint-plugin": "4.28.5", "@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "4.28.5", "@typescript-eslint/parser": "5.41.0",
"@vercel/ncc": "0.29.0", "@vercel/ncc": "0.34.0",
"eslint": "7.32.0", "eslint": "8.26.0",
"markdownlint-cli": "0.28.1", "markdownlint-cli": "0.32.2",
"npm-check-updates": "11.8.3", "npm-check-updates": "16.3.16",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"typescript": "4.3.5", "typescript": "4.8.4",
"yaml-lint": "1.2.4" "yaml-lint": "1.7.0"
} }
} }

View file

@ -92,6 +92,7 @@ function update_dependencies_version() {
function regenerate_package_lock() { function regenerate_package_lock() {
rm -rf package-lock.json node_modules rm -rf package-lock.json node_modules
npm install npm install
npm dedupe
} }
function build_package() { function build_package() {

View file

@ -18,6 +18,7 @@ npm run check-updates -- -u
# re-install packages # re-install packages
rm -rf package-lock.json node_modules rm -rf package-lock.json node_modules
npm i npm i
npm dedupe
# check # check
npm run build npm run build