Skip to content

Commit

Permalink
Update cerberus-node-client and many other dependent NPM modules (#41)
Browse files Browse the repository at this point in the history
* Updating dependent modules to include many fixes

* Update built JS

* Ignore 'English text in string literals is not allowed' lint errors
  • Loading branch information
james-michael authored Nov 17, 2021
1 parent b3efd68 commit 3a64ffa
Show file tree
Hide file tree
Showing 9 changed files with 32,845 additions and 11,640 deletions.
18,696 changes: 15,432 additions & 3,264 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

7,160 changes: 7,089 additions & 71 deletions dist/licenses.txt

Large diffs are not rendered by default.

18,589 changes: 10,301 additions & 8,288 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cerberus-secrets-actions",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"description": "GitHub Actions to read secrets from Cerberus ",
"main": "lib/main.js",
Expand All @@ -25,23 +25,23 @@
"author": "James Michael",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.0.3",
"cerberus-node-client": "^3.3.5"
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"cerberus-node-client": "^3.4.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/jest": "^27.0.2",
"@types/node": "^15.0.2",
"@typescript-eslint/parser": "^4.28.2",
"@vercel/ncc": "^0.28.5",
"eslint": "^7.30.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.6",
"jest": "^24.9.0",
"jest-circus": "^26.6.3",
"@typescript-eslint/parser": "^5.3.1",
"@vercel/ncc": "^0.28.6",
"eslint": "^8.2.0",
"eslint-plugin-github": "^4.3.3",
"eslint-plugin-jest": "^25.2.4",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"js-yaml": "^4.1.0",
"prettier": "2.3.2",
"ts-jest": "^24.3.0",
"typescript": "^4.2.4"
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}
1 change: 1 addition & 0 deletions src/cerberus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
/* eslint-disable github/no-then */
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable i18n-text/no-en */

import * as core from '@actions/core'
import CerberusClient from 'cerberus-node-client'
Expand Down
2 changes: 2 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
*
*/

/* eslint-disable i18n-text/no-en */

import * as core from '@actions/core'
import Cerberus from './cerberus'
import {getRunnerRegion} from './utils'
Expand Down
2 changes: 2 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
*
*/

/* eslint-disable i18n-text/no-en */

import * as core from '@actions/core'
import * as exec from '@actions/exec'

Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"useUnknownInCatchVariables": false
},
"exclude": ["node_modules", "**/*.test.ts"]
}

0 comments on commit 3a64ffa

Please sign in to comment.