This run took 10 seconds.
From 0373477afeeb4ea505cff45b4d206738e7901d01 Mon Sep 17 00:00:00 2001 From: libraryupgrader <tools.libraryupgrader@tools.wmflabs.org> Date: Thu, 4 Jul 2024 03:18:00 +0000 Subject: [PATCH] [DNM] there are no updates Change-Id: I6a7e76571eb39d4a280d94815f19962ad0662ed4 --- .gitignore | 1 - composer.json | 56 +++++++++++++++++++++--------------------- package-lock.json | 62 +++++++++++++++++++++++++++++++++++++++++++++++ package.json | 23 +++++++++--------- yarn.lock | 12 ++++----- 5 files changed, 109 insertions(+), 45 deletions(-) create mode 100644 package-lock.json diff --git a/.gitignore b/.gitignore index 32d293a..dcb615f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ node_modules/ .eslintcache # We use yarn instead of npm -package-lock.json # composer dependencies /vendor/ diff --git a/composer.json b/composer.json index 3a7c4c9..34e5dd2 100644 --- a/composer.json +++ b/composer.json @@ -1,29 +1,31 @@ { - "name": "femiwiki/discord-notifications", - "description": "Sends Discord notifications for selected actions that have occurred in your MediaWiki sites.", - "require-dev": { - "mediawiki/mediawiki-codesniffer": "39.0.0", - "mediawiki/mediawiki-phan-config": "0.11.1", - "mediawiki/minus-x": "1.1.1", - "php-parallel-lint/php-console-highlighter": "1.0.0", - "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpcompatibility/php-compatibility": "9.3.5", - "dealerdirect/phpcodesniffer-composer-installer": "0.7.2" - }, - "scripts": { - "test": [ - "parallel-lint . --exclude vendor --exclude node_modules", - "phpcs -p -s", - "minus-x check ." - ], - "fix": [ - "minus-x fix .", - "phpcbf" - ] - }, - "config": { - "allow-plugins": { - "dealerdirect/phpcodesniffer-composer-installer": true - } - } + "name": "femiwiki/discord-notifications", + "description": "Sends Discord notifications for selected actions that have occurred in your MediaWiki sites.", + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "0.7.2", + "mediawiki/mediawiki-codesniffer": "39.0.0", + "mediawiki/mediawiki-phan-config": "0.11.1", + "mediawiki/minus-x": "1.1.1", + "php-parallel-lint/php-console-highlighter": "1.0.0", + "php-parallel-lint/php-parallel-lint": "1.3.2", + "phpcompatibility/php-compatibility": "9.3.5" + }, + "scripts": { + "test": [ + "parallel-lint . --exclude vendor --exclude node_modules", + "@phpcs", + "minus-x check ." + ], + "fix": [ + "minus-x fix .", + "phpcbf" + ], + "phan": "phan -d . --long-progress-bar", + "phpcs": "phpcs -sp --cache" + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + } } diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..6daaa96 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,62 @@ +{ + "name": "repo", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@prettier/plugin-xml": "^2.2.0", + "prettier": "2.7.1" + } + }, + "node_modules/@prettier/plugin-xml": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@prettier/plugin-xml/-/plugin-xml-2.2.0.tgz", + "integrity": "sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==", + "dev": true, + "dependencies": { + "@xml-tools/parser": "^1.0.11", + "prettier": ">=2.4.0" + } + }, + "node_modules/@xml-tools/parser": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@xml-tools/parser/-/parser-1.0.11.tgz", + "integrity": "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==", + "dev": true, + "dependencies": { + "chevrotain": "7.1.1" + } + }, + "node_modules/chevrotain": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-7.1.1.tgz", + "integrity": "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==", + "dev": true, + "dependencies": { + "regexp-to-ast": "0.5.0" + } + }, + "node_modules/prettier": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/regexp-to-ast": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz", + "integrity": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==", + "dev": true + } + } +} diff --git a/package.json b/package.json index 28879ab..de336ee 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,14 @@ { - "private": true, - "scripts": { - "test": "npm -s run lint", - "lint": "npm -s run lint:prettier", - "lint:prettier": "prettier . --check", - "fix": "prettier . --write" - }, - "devDependencies": { - "@prettier/plugin-xml": "^2.2.0", - "prettier": "2.7.1" - } + "name": "DiscordRCFeed", + "private": true, + "scripts": { + "test": "npm -s run lint", + "lint": "npm -s run lint:prettier", + "lint:prettier": "prettier . --check", + "fix": "prettier . --write" + }, + "devDependencies": { + "@prettier/plugin-xml": "^2.2.0", + "prettier": "2.7.1" + } } diff --git a/yarn.lock b/yarn.lock index 0dece1e..126693f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,7 +4,7 @@ "@prettier/plugin-xml@^2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@prettier/plugin-xml/-/plugin-xml-2.2.0.tgz#2bc2ae667aa817369fdb939aa7d36ea88105483d" + resolved "https://registry.npmjs.org/@prettier/plugin-xml/-/plugin-xml-2.2.0.tgz" integrity sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew== dependencies: "@xml-tools/parser" "^1.0.11" @@ -12,24 +12,24 @@ "@xml-tools/parser@^1.0.11": version "1.0.11" - resolved "https://registry.yarnpkg.com/@xml-tools/parser/-/parser-1.0.11.tgz#a118a14099ea5c3c537e4781fad2fc195b57f8ff" + resolved "https://registry.npmjs.org/@xml-tools/parser/-/parser-1.0.11.tgz" integrity sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA== dependencies: chevrotain "7.1.1" chevrotain@7.1.1: version "7.1.1" - resolved "https://registry.yarnpkg.com/chevrotain/-/chevrotain-7.1.1.tgz#5122814eafd1585a9601f9180a7be9c42d5699c6" + resolved "https://registry.npmjs.org/chevrotain/-/chevrotain-7.1.1.tgz" integrity sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw== dependencies: regexp-to-ast "0.5.0" -prettier@2.7.1, prettier@>=2.4.0: +prettier@>=2.4.0, prettier@2.7.1: version "2.7.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" + resolved "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz" integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== regexp-to-ast@0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz#56c73856bee5e1fef7f73a00f1473452ab712a24" + resolved "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz" integrity sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw== -- 2.39.2
$ date --- stdout --- Thu Jul 4 03:17:53 UTC 2024 --- end --- $ git clone file:///srv/git/mediawiki-extensions-DiscordRCFeed.git repo --depth=1 -b REL1_39 --- stderr --- Cloning into 'repo'... --- stdout --- --- end --- $ git config user.name libraryupgrader --- stdout --- --- end --- $ git config user.email tools.libraryupgrader@tools.wmflabs.org --- stdout --- --- end --- $ git submodule update --init --- stdout --- --- end --- $ grr init --- stdout --- Installed commit-msg hook. --- end --- $ git show-ref refs/heads/REL1_39 --- stdout --- 15aacf24919f1eb242322dacf5cb33a1c2500155 refs/heads/REL1_39 --- end --- $ /usr/bin/npm i --package-lock-only --- stdout --- up to date, audited 6 packages in 2s 1 package is looking for funding run `npm fund` for details found 0 vulnerabilities --- end --- $ package-lock-lint package-lock.json --- stdout --- Checking package-lock.json --- end --- Editing .gitignore to remove package-lock.json $ /usr/bin/npm audit --json --- stdout --- { "auditReportVersion": 2, "vulnerabilities": {}, "metadata": { "vulnerabilities": { "info": 0, "low": 0, "moderate": 0, "high": 0, "critical": 0, "total": 0 }, "dependencies": { "prod": 1, "dev": 5, "optional": 0, "peer": 0, "peerOptional": 0, "total": 5 } } } --- end --- $ /usr/bin/composer install --- stderr --- No composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. Loading composer repositories with package information Updating dependencies Lock file operations: 38 installs, 0 updates, 0 removals - Locking composer/pcre (1.0.1) - Locking composer/semver (3.3.2) - Locking composer/spdx-licenses (1.5.8) - Locking composer/xdebug-handler (2.0.5) - Locking dealerdirect/phpcodesniffer-composer-installer (v0.7.2) - Locking doctrine/deprecations (1.1.3) - Locking felixfbecker/advanced-json-rpc (v3.2.1) - Locking mediawiki/mediawiki-codesniffer (v39.0.0) - Locking mediawiki/mediawiki-phan-config (0.11.1) - Locking mediawiki/minus-x (1.1.1) - Locking mediawiki/phan-taint-check-plugin (3.3.2) - Locking microsoft/tolerant-php-parser (v0.1.2) - Locking netresearch/jsonmapper (v4.4.1) - Locking phan/phan (5.2.0) - Locking php-parallel-lint/php-console-color (v1.0.1) - Locking php-parallel-lint/php-console-highlighter (v1.0.0) - Locking php-parallel-lint/php-parallel-lint (v1.3.2) - Locking phpcompatibility/php-compatibility (9.3.5) - Locking phpdocumentor/reflection-common (2.2.0) - Locking phpdocumentor/reflection-docblock (5.4.1) - Locking phpdocumentor/type-resolver (1.8.2) - Locking phpstan/phpdoc-parser (1.29.1) - Locking psr/container (2.0.2) - Locking psr/log (2.0.0) - Locking sabre/event (5.1.4) - Locking squizlabs/php_codesniffer (3.6.2) - Locking symfony/console (v5.4.41) - Locking symfony/deprecation-contracts (v3.5.0) - Locking symfony/polyfill-ctype (v1.30.0) - Locking symfony/polyfill-intl-grapheme (v1.30.0) - Locking symfony/polyfill-intl-normalizer (v1.30.0) - Locking symfony/polyfill-mbstring (v1.30.0) - Locking symfony/polyfill-php73 (v1.30.0) - Locking symfony/polyfill-php80 (v1.30.0) - Locking symfony/service-contracts (v3.5.0) - Locking symfony/string (v6.4.9) - Locking tysonandre/var_representation_polyfill (0.1.3) - Locking webmozart/assert (1.11.0) Writing lock file Installing dependencies from lock file (including require-dev) Package operations: 38 installs, 0 updates, 0 removals 0 [>---------------------------] 0 [->--------------------------] - Installing squizlabs/php_codesniffer (3.6.2): Extracting archive - Installing dealerdirect/phpcodesniffer-composer-installer (v0.7.2): Extracting archive - Installing composer/pcre (1.0.1): Extracting archive - Installing symfony/polyfill-mbstring (v1.30.0): Extracting archive - Installing composer/spdx-licenses (1.5.8): Extracting archive - Installing composer/semver (3.3.2): Extracting archive - Installing mediawiki/mediawiki-codesniffer (v39.0.0): Extracting archive - Installing tysonandre/var_representation_polyfill (0.1.3): Extracting archive - Installing symfony/polyfill-php80 (v1.30.0): Extracting archive - Installing symfony/polyfill-intl-normalizer (v1.30.0): Extracting archive - Installing symfony/polyfill-intl-grapheme (v1.30.0): Extracting archive - Installing symfony/polyfill-ctype (v1.30.0): Extracting archive - Installing symfony/string (v6.4.9): Extracting archive - Installing symfony/deprecation-contracts (v3.5.0): Extracting archive - Installing psr/container (2.0.2): Extracting archive - Installing symfony/service-contracts (v3.5.0): Extracting archive - Installing symfony/polyfill-php73 (v1.30.0): Extracting archive - Installing symfony/console (v5.4.41): Extracting archive - Installing sabre/event (5.1.4): Extracting archive - Installing netresearch/jsonmapper (v4.4.1): Extracting archive - Installing microsoft/tolerant-php-parser (v0.1.2): Extracting archive - Installing webmozart/assert (1.11.0): Extracting archive - Installing phpstan/phpdoc-parser (1.29.1): Extracting archive - Installing phpdocumentor/reflection-common (2.2.0): Extracting archive - Installing doctrine/deprecations (1.1.3): Extracting archive - Installing phpdocumentor/type-resolver (1.8.2): Extracting archive - Installing phpdocumentor/reflection-docblock (5.4.1): Extracting archive - Installing felixfbecker/advanced-json-rpc (v3.2.1): Extracting archive - Installing psr/log (2.0.0): Extracting archive - Installing composer/xdebug-handler (2.0.5): Extracting archive - Installing phan/phan (5.2.0): Extracting archive - Installing mediawiki/phan-taint-check-plugin (3.3.2): Extracting archive - Installing mediawiki/mediawiki-phan-config (0.11.1): Extracting archive - Installing mediawiki/minus-x (1.1.1): Extracting archive - Installing php-parallel-lint/php-console-color (v1.0.1): Extracting archive - Installing php-parallel-lint/php-console-highlighter (v1.0.0): Extracting archive - Installing php-parallel-lint/php-parallel-lint (v1.3.2): Extracting archive - Installing phpcompatibility/php-compatibility (9.3.5): Extracting archive 0/36 [>---------------------------] 0% 20/36 [===============>------------] 55% 34/36 [==========================>-] 94% 36/36 [============================] 100% 4 package suggestions were added by new dependencies, use `composer suggest` to see details. Generating autoload files 15 packages you are using are looking for funding. Use the `composer fund` command to find out more! --- stdout --- PHP CodeSniffer Config installed_paths set to ../../mediawiki/mediawiki-codesniffer,../../phpcompatibility/php-compatibility --- end --- $ /usr/bin/npm audit --json --- stdout --- { "auditReportVersion": 2, "vulnerabilities": {}, "metadata": { "vulnerabilities": { "info": 0, "low": 0, "moderate": 0, "high": 0, "critical": 0, "total": 0 }, "dependencies": { "prod": 1, "dev": 5, "optional": 0, "peer": 0, "peerOptional": 0, "total": 5 } } } --- end --- $ package-lock-lint package-lock.json --- stdout --- Checking package-lock.json --- end --- [DNM] there are no updates $ git add . --- stdout --- --- end --- $ git commit -F /tmp/tmpz2uwpd9t --- stdout --- [REL1_39 0373477] [DNM] there are no updates 5 files changed, 109 insertions(+), 45 deletions(-) create mode 100644 package-lock.json --- end --- $ git format-patch HEAD~1 --stdout --- stdout --- From 0373477afeeb4ea505cff45b4d206738e7901d01 Mon Sep 17 00:00:00 2001 From: libraryupgrader <tools.libraryupgrader@tools.wmflabs.org> Date: Thu, 4 Jul 2024 03:18:00 +0000 Subject: [PATCH] [DNM] there are no updates Change-Id: I6a7e76571eb39d4a280d94815f19962ad0662ed4 --- .gitignore | 1 - composer.json | 56 +++++++++++++++++++++--------------------- package-lock.json | 62 +++++++++++++++++++++++++++++++++++++++++++++++ package.json | 23 +++++++++--------- yarn.lock | 12 ++++----- 5 files changed, 109 insertions(+), 45 deletions(-) create mode 100644 package-lock.json diff --git a/.gitignore b/.gitignore index 32d293a..dcb615f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ node_modules/ .eslintcache # We use yarn instead of npm -package-lock.json # composer dependencies /vendor/ diff --git a/composer.json b/composer.json index 3a7c4c9..34e5dd2 100644 --- a/composer.json +++ b/composer.json @@ -1,29 +1,31 @@ { - "name": "femiwiki/discord-notifications", - "description": "Sends Discord notifications for selected actions that have occurred in your MediaWiki sites.", - "require-dev": { - "mediawiki/mediawiki-codesniffer": "39.0.0", - "mediawiki/mediawiki-phan-config": "0.11.1", - "mediawiki/minus-x": "1.1.1", - "php-parallel-lint/php-console-highlighter": "1.0.0", - "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpcompatibility/php-compatibility": "9.3.5", - "dealerdirect/phpcodesniffer-composer-installer": "0.7.2" - }, - "scripts": { - "test": [ - "parallel-lint . --exclude vendor --exclude node_modules", - "phpcs -p -s", - "minus-x check ." - ], - "fix": [ - "minus-x fix .", - "phpcbf" - ] - }, - "config": { - "allow-plugins": { - "dealerdirect/phpcodesniffer-composer-installer": true - } - } + "name": "femiwiki/discord-notifications", + "description": "Sends Discord notifications for selected actions that have occurred in your MediaWiki sites.", + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "0.7.2", + "mediawiki/mediawiki-codesniffer": "39.0.0", + "mediawiki/mediawiki-phan-config": "0.11.1", + "mediawiki/minus-x": "1.1.1", + "php-parallel-lint/php-console-highlighter": "1.0.0", + "php-parallel-lint/php-parallel-lint": "1.3.2", + "phpcompatibility/php-compatibility": "9.3.5" + }, + "scripts": { + "test": [ + "parallel-lint . --exclude vendor --exclude node_modules", + "@phpcs", + "minus-x check ." + ], + "fix": [ + "minus-x fix .", + "phpcbf" + ], + "phan": "phan -d . --long-progress-bar", + "phpcs": "phpcs -sp --cache" + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + } } diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..6daaa96 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,62 @@ +{ + "name": "repo", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@prettier/plugin-xml": "^2.2.0", + "prettier": "2.7.1" + } + }, + "node_modules/@prettier/plugin-xml": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@prettier/plugin-xml/-/plugin-xml-2.2.0.tgz", + "integrity": "sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew==", + "dev": true, + "dependencies": { + "@xml-tools/parser": "^1.0.11", + "prettier": ">=2.4.0" + } + }, + "node_modules/@xml-tools/parser": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@xml-tools/parser/-/parser-1.0.11.tgz", + "integrity": "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==", + "dev": true, + "dependencies": { + "chevrotain": "7.1.1" + } + }, + "node_modules/chevrotain": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-7.1.1.tgz", + "integrity": "sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==", + "dev": true, + "dependencies": { + "regexp-to-ast": "0.5.0" + } + }, + "node_modules/prettier": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/regexp-to-ast": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz", + "integrity": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==", + "dev": true + } + } +} diff --git a/package.json b/package.json index 28879ab..de336ee 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,14 @@ { - "private": true, - "scripts": { - "test": "npm -s run lint", - "lint": "npm -s run lint:prettier", - "lint:prettier": "prettier . --check", - "fix": "prettier . --write" - }, - "devDependencies": { - "@prettier/plugin-xml": "^2.2.0", - "prettier": "2.7.1" - } + "name": "DiscordRCFeed", + "private": true, + "scripts": { + "test": "npm -s run lint", + "lint": "npm -s run lint:prettier", + "lint:prettier": "prettier . --check", + "fix": "prettier . --write" + }, + "devDependencies": { + "@prettier/plugin-xml": "^2.2.0", + "prettier": "2.7.1" + } } diff --git a/yarn.lock b/yarn.lock index 0dece1e..126693f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,7 +4,7 @@ "@prettier/plugin-xml@^2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@prettier/plugin-xml/-/plugin-xml-2.2.0.tgz#2bc2ae667aa817369fdb939aa7d36ea88105483d" + resolved "https://registry.npmjs.org/@prettier/plugin-xml/-/plugin-xml-2.2.0.tgz" integrity sha512-UWRmygBsyj4bVXvDiqSccwT1kmsorcwQwaIy30yVh8T+Gspx4OlC0shX1y+ZuwXZvgnafmpRYKks0bAu9urJew== dependencies: "@xml-tools/parser" "^1.0.11" @@ -12,24 +12,24 @@ "@xml-tools/parser@^1.0.11": version "1.0.11" - resolved "https://registry.yarnpkg.com/@xml-tools/parser/-/parser-1.0.11.tgz#a118a14099ea5c3c537e4781fad2fc195b57f8ff" + resolved "https://registry.npmjs.org/@xml-tools/parser/-/parser-1.0.11.tgz" integrity sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA== dependencies: chevrotain "7.1.1" chevrotain@7.1.1: version "7.1.1" - resolved "https://registry.yarnpkg.com/chevrotain/-/chevrotain-7.1.1.tgz#5122814eafd1585a9601f9180a7be9c42d5699c6" + resolved "https://registry.npmjs.org/chevrotain/-/chevrotain-7.1.1.tgz" integrity sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw== dependencies: regexp-to-ast "0.5.0" -prettier@2.7.1, prettier@>=2.4.0: +prettier@>=2.4.0, prettier@2.7.1: version "2.7.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" + resolved "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz" integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== regexp-to-ast@0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz#56c73856bee5e1fef7f73a00f1473452ab712a24" + resolved "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.5.0.tgz" integrity sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw== -- 2.39.2 --- end ---