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 (#255)

This commit is contained in:
shimataro 2023-10-11 07:44:42 +09:00 committed by GitHub
parent 51874aa964
commit ab731d2fcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 2267 additions and 2084 deletions

80
dist/main.js vendored

File diff suppressed because one or more lines are too long

8
dist/main.js.map vendored

File diff suppressed because one or more lines are too long

70
dist/post.js vendored

File diff suppressed because one or more lines are too long

8
dist/post.js.map vendored

File diff suppressed because one or more lines are too long

4159
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -32,16 +32,16 @@
"author": "shimataro", "author": "shimataro",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@actions/core": "1.10.0", "@actions/core": "1.10.1",
"@types/node": "18.15.7", "@types/node": "20.8.4",
"@typescript-eslint/eslint-plugin": "5.56.0", "@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "5.56.0", "@typescript-eslint/parser": "6.7.5",
"esbuild": "0.19.4", "esbuild": "0.19.4",
"eslint": "8.36.0", "eslint": "8.51.0",
"markdownlint-cli": "0.33.0", "markdownlint-cli": "0.37.0",
"npm-check-updates": "16.8.0", "npm-check-updates": "16.14.5",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"typescript": "5.0.2", "typescript": "5.2.2",
"yaml-lint": "1.7.0" "yaml-lint": "1.7.0"
} }
} }

View file

@ -7,4 +7,4 @@ npm run verify
rm -rf node_modules rm -rf node_modules
npm ci --only=production npm ci --only=production
git add lib git add dist

View file

@ -25,7 +25,7 @@ npm run build
npm run verify npm run verify
# commit # commit
git add package.json package-lock.json lib git add package.json package-lock.json dist
git commit -m "update dependencies" git commit -m "update dependencies"
# finished! # finished!

View file

@ -7,7 +7,7 @@
"es6" "es6"
], ],
"sourceMap": true, "sourceMap": true,
"outDir": "./lib", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src",
"strict": true, "strict": true,