From c26f6286dc9ce7104342bcfc0d00cf59c6ce089f Mon Sep 17 00:00:00 2001 From: "street-side-software-automation[bot]" <74785433+street-side-software-automation[bot]@users.noreply.github.com> Date: Mon, 14 Nov 2022 10:14:57 +0100 Subject: [PATCH] fix: Workflow Bot -- Update ALL Dependencies (main) (#1055) fix: Workflow Bot -- Update ALL Dependencies Co-authored-by: Jason3S --- action/node_modules/cosmiconfig/README.md | 13 +++++++++++-- .../node_modules/cosmiconfig/dist/ExplorerBase.js | 2 +- action/node_modules/cosmiconfig/dist/index.js | 2 +- action/node_modules/cosmiconfig/package.json | 2 +- yarn.lock | 12 ++++++------ 5 files changed, 20 insertions(+), 11 deletions(-) diff --git a/action/node_modules/cosmiconfig/README.md b/action/node_modules/cosmiconfig/README.md index 094b02606..8195c91a2 100644 --- a/action/node_modules/cosmiconfig/README.md +++ b/action/node_modules/cosmiconfig/README.md @@ -13,6 +13,7 @@ By default, Cosmiconfig will start where you tell it to start and search up the - a `package.json` property - a JSON or YAML, extensionless "rc file" - an "rc file" with the extensions `.json`, `.yaml`, `.yml`, `.js`, or `.cjs` +- any of the above two inside a `.config` subdirectory - a `.config.js` or `.config.cjs` CommonJS module For example, if your module's name is "myapp", cosmiconfig will search up the directory tree for configuration in the following places: @@ -20,6 +21,7 @@ For example, if your module's name is "myapp", cosmiconfig will search up the di - a `myapp` property in `package.json` - a `.myapprc` file in JSON or YAML format - a `.myapprc.json`, `.myapprc.yaml`, `.myapprc.yml`, `.myapprc.js`, or `.myapprc.cjs` file +- a `myapprc`, `myapprc.json`, `myapprc.yaml`, `myapprc.yml`, `myapprc.js` or `myapprc.cjs` file inside a `.config` subdirectory` - a `myapp.config.js` or `myapp.config.cjs` CommonJS module exporting an object Cosmiconfig continues to search up the directory tree, checking each of these places in each directory, until it finds some acceptable configuration (or hits the home directory). @@ -143,7 +145,8 @@ Here's how your default [`search()`] will work: 1. A `goldengrahams` property in a `package.json` file. 2. A `.goldengrahamsrc` file with JSON or YAML syntax. 3. A `.goldengrahamsrc.json`, `.goldengrahamsrc.yaml`, `.goldengrahamsrc.yml`, `.goldengrahamsrc.js`, or `.goldengrahamsrc.cjs` file. - 4. A `goldengrahams.config.js` or `goldengrahams.config.cjs` CommonJS module exporting the object. + 4. A `goldengrahamsrc`, `goldengrahamsrc.json`, `goldengrahamsrc.yaml`, `goldengrahamsrc.yml`, `goldengrahamsrc.js`, or `goldengrahamsrc.cjs` file in the `.config` subdirectory. + 5. A `goldengrahams.config.js` or `goldengrahams.config.cjs` CommonJS module exporting the object. - If none of those searches reveal a configuration object, move up one directory level and try again. So the search continues in `./`, `../`, `../../`, `../../../`, etc., checking the same places in each directory. - Continue searching until arriving at your home directory (or some other directory defined by the cosmiconfig option [`stopDir`]). @@ -267,6 +270,12 @@ Each place is relative to the directory being searched, and the places are check `.${moduleName}rc.yml`, `.${moduleName}rc.js`, `.${moduleName}rc.cjs`, + `.config/${moduleName}rc`, + `.config/${moduleName}rc.json`, + `.config/${moduleName}rc.yaml`, + `.config/${moduleName}rc.yml`, + `.config/${moduleName}rc.js`, + `.config/${moduleName}rc.cjs`, `${moduleName}.config.js`, `${moduleName}.config.cjs`, ] @@ -374,7 +383,7 @@ If you want to load files that are not handled by the loader functions Cosmiconf **Third-party loaders:** -- [@endemolshinegroup/cosmiconfig-typescript-loader](https://github.com/EndemolShineGroup/cosmiconfig-typescript-loader) +- [cosmiconfig-typescript-loader](https://github.com/codex-/cosmiconfig-typescript-loader) **Use cases for custom loader function:** diff --git a/action/node_modules/cosmiconfig/dist/ExplorerBase.js b/action/node_modules/cosmiconfig/dist/ExplorerBase.js index 213d34cb3..422fb1375 100644 --- a/action/node_modules/cosmiconfig/dist/ExplorerBase.js +++ b/action/node_modules/cosmiconfig/dist/ExplorerBase.js @@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true }); -exports.getExtensionDescription = getExtensionDescription; exports.ExplorerBase = void 0; +exports.getExtensionDescription = getExtensionDescription; var _path = _interopRequireDefault(require("path")); diff --git a/action/node_modules/cosmiconfig/dist/index.js b/action/node_modules/cosmiconfig/dist/index.js index b41416d66..eac365a17 100644 --- a/action/node_modules/cosmiconfig/dist/index.js +++ b/action/node_modules/cosmiconfig/dist/index.js @@ -64,7 +64,7 @@ const identity = function identity(x) { function normalizeOptions(moduleName, options) { const defaults = { packageProp: moduleName, - searchPlaces: ['package.json', `.${moduleName}rc`, `.${moduleName}rc.json`, `.${moduleName}rc.yaml`, `.${moduleName}rc.yml`, `.${moduleName}rc.js`, `.${moduleName}rc.cjs`, `${moduleName}.config.js`, `${moduleName}.config.cjs`], + searchPlaces: ['package.json', `.${moduleName}rc`, `.${moduleName}rc.json`, `.${moduleName}rc.yaml`, `.${moduleName}rc.yml`, `.${moduleName}rc.js`, `.${moduleName}rc.cjs`, `.config/${moduleName}rc`, `.config/${moduleName}rc.json`, `.config/${moduleName}rc.yaml`, `.config/${moduleName}rc.yml`, `.config/${moduleName}rc.js`, `.config/${moduleName}rc.cjs`, `${moduleName}.config.js`, `${moduleName}.config.cjs`], ignoreEmptySearchPlaces: true, stopDir: _os.default.homedir(), cache: true, diff --git a/action/node_modules/cosmiconfig/package.json b/action/node_modules/cosmiconfig/package.json index 757e8c55f..17241bb38 100644 --- a/action/node_modules/cosmiconfig/package.json +++ b/action/node_modules/cosmiconfig/package.json @@ -1,6 +1,6 @@ { "name": "cosmiconfig", - "version": "7.0.1", + "version": "7.1.0", "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/yarn.lock b/yarn.lock index 2e79d8fd0..fb116a49f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1699,9 +1699,9 @@ char-regex@^1.0.2: integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== ci-info@^3.2.0: - version "3.5.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz#bfac2a29263de4c829d806b1ab478e35091e171f" - integrity sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw== + version "3.6.0" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.6.0.tgz#d37ad22393e808cd62937a3f9be726f801654857" + integrity sha512-RfY02LtqkzB/aiyTrh0TtDS0rQnQY3kyvkVkdBnPTUbkiGbkkCJhS7Oj8b37Qa/5eGiMilF3kH+/Km1EZxpuyQ== cjs-module-lexer@^1.0.0: version "1.2.2" @@ -1843,9 +1843,9 @@ cors@^2.8.5: vary "^1" cosmiconfig@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" - integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== + version "7.1.0" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== dependencies: "@types/parse-json" "^4.0.0" import-fresh "^3.2.1"