Skip to content

Commit e9c2110

Browse files
authored
Drop unecessary deps (#338)
1 parent 62fc84d commit e9c2110

File tree

8 files changed

+362
-1081
lines changed

8 files changed

+362
-1081
lines changed

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@ module.exports = {
2424
'plugin:@typescript-eslint/recommended',
2525
'plugin:prettier/recommended',
2626
],
27+
28+
rules: {
29+
'@typescript-eslint/no-explicit-any': 'off',
30+
},
2731
};

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ support](https://cloud.google.com/support).**
1616
an App Engine Application. See the [Authorization](#authorization) section
1717
below for more information.
1818

19-
- This action runs using Node 16. If you are using self-hosted GitHub Actions
19+
- This action runs using Node 20. If you are using self-hosted GitHub Actions
2020
runners, you must use runner version [2.285.0](https://github.com/actions/virtual-environments)
2121
or newer.
2222

dist/index.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 109 additions & 851 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"main": "dist/index.js",
66
"scripts": {
77
"build": "ncc build -m src/main.ts",
8-
"lint": "eslint src/ tests/ --ext .ts,.tsx",
9-
"format": "eslint src/ tests/ --ext .ts,.tsx --fix",
10-
"test": "mocha -r ts-node/register -t 600s 'tests/*.test.ts' --exit"
8+
"lint": "eslint . --ext .ts,.tsx",
9+
"format": "prettier --write **/*.ts",
10+
"test": "node --require ts-node/register --test-reporter spec --test tests/main.test.ts tests/output-parser.test.ts"
1111
},
1212
"repository": {
1313
"type": "git",
@@ -25,26 +25,20 @@
2525
"dependencies": {
2626
"@actions/core": "^1.10.1",
2727
"@actions/exec": "^1.1.1",
28-
"@google-github-actions/actions-utils": "^0.4.9",
28+
"@google-github-actions/actions-utils": "^0.4.10",
2929
"@google-github-actions/setup-cloud-sdk": "^1.1.3",
3030
"yaml": "^2.3.4"
3131
},
3232
"devDependencies": {
33-
"@types/chai": "^4.3.x",
34-
"@types/mocha": "^10.0.4",
35-
"@types/node": "^20.9.0",
36-
"@types/sinon": "^17.0.1",
37-
"@typescript-eslint/eslint-plugin": "^6.10.0",
38-
"@typescript-eslint/parser": "^6.10.0",
33+
"@types/node": "^20.10.3",
34+
"@typescript-eslint/eslint-plugin": "^6.13.1",
35+
"@typescript-eslint/parser": "^6.13.1",
3936
"@vercel/ncc": "^0.38.1",
40-
"chai": "^4.3.x",
41-
"eslint": "^8.53.0",
42-
"eslint-config-prettier": "^9.0.0",
43-
"eslint-plugin-prettier": "^5.0.x",
44-
"mocha": "^10.2.0",
45-
"prettier": "^3.0.3",
46-
"sinon": "^17.0.1",
37+
"eslint-config-prettier": "^9.1.0",
38+
"eslint-plugin-prettier": "^5.0.1",
39+
"eslint": "^8.55.0",
40+
"prettier": "^3.1.0",
4741
"ts-node": "^10.9.1",
48-
"typescript": "^5.2.2"
42+
"typescript": "^5.3.2"
4943
}
5044
}

0 commit comments

Comments
 (0)