diff --git a/package.json b/package.json index d01d98a..96d9423 100644 --- a/package.json +++ b/package.json @@ -25,13 +25,13 @@ ], "devDependencies": { "@nice-move/cli": "^0.11.13", - "@nice-move/eslint-config-base": "^0.11.10", + "@nice-move/eslint-config-base": "^0.11.11", "@nice-move/prettier-config": "^0.12.4", - "best-shot": "^0.5.8", + "best-shot": "^0.5.13", "eslint": "^8.57.0", "garou": "^0.7.6", - "prettier": "^3.3.2", - "typescript": "^5.5.2" + "prettier": "^3.3.3", + "typescript": "^5.5.4" }, "peerDependencies": { "@bring-it/npm": "workspace:*", @@ -42,10 +42,10 @@ "cpu-features": "npm:cheetor@0.0.0" } }, - "packageManager": "pnpm@9.0.5", + "packageManager": "pnpm@9.5.0", "engines": { "node": "^18.0.0 || ^20.0.0", - "npm": ">=9.4.0" + "npm": ">=9.5.0" }, "eslintConfig": { "extends": "@nice-move/eslint-config-base" diff --git a/packages/cli/lib/action/pack.mjs b/packages/cli/lib/action/pack.mjs index 5d45989..6a69ece 100644 --- a/packages/cli/lib/action/pack.mjs +++ b/packages/cli/lib/action/pack.mjs @@ -1,5 +1,5 @@ import { execFileSync } from 'node:child_process'; -import { join } from 'node:path'; +import { resolve } from 'node:path'; import { globbySync } from 'globby'; @@ -27,7 +27,7 @@ function checkTarget(pattern) { export async function action({ pattern, name, dir }) { const target = checkTarget(pattern); - const filename = join(dir, name); + const filename = resolve(process.cwd(), dir, name); try { execFileSync('ls', [dir]); @@ -39,5 +39,5 @@ export async function action({ pattern, name, dir }) { execFileSync('tar', ['-c', '-f', `${filename}.tar.gz`, '-z', ...target]); - execFileSync('zip', ['-r', '-q', `${filename}.zip`, ...target]); + execFileSync('zip', ['-r', '-FS', '-q', `${filename}.zip`, ...target]); } diff --git a/packages/cli/package.json b/packages/cli/package.json index 933e8a2..c69aef6 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@bring-it/cli", - "version": "0.9.3", + "version": "0.9.4", "description": "Common command line interface of 'bring-it'", "license": "MIT", "author": { @@ -37,7 +37,7 @@ "prepublishOnly": "pnpm run build" }, "dependencies": { - "globby": "^14.0.1", + "globby": "^14.0.2", "yargs": "^17.7.2" }, "devDependencies": { diff --git a/packages/notify/package.json b/packages/notify/package.json index 5020333..c0781df 100644 --- a/packages/notify/package.json +++ b/packages/notify/package.json @@ -1,6 +1,6 @@ { "name": "@bring-it/notify", - "version": "0.3.7", + "version": "0.3.8", "description": "Send releases notifications", "license": "MIT", "author": { @@ -42,10 +42,10 @@ "devDependencies": { "conventional-commits-parser": "^5.0.0", "fast-clean": "^1.3.2", - "gitlog": "^5.0.1", + "gitlog": "^5.0.2", "lodash": "^4.17.21", "mdast-util-to-markdown": "^2.1.0", - "semver": "^7.6.2" + "semver": "^7.6.3" }, "peerDependencies": { "@bring-it/cli": "workspace:^" diff --git a/packages/npm/package.json b/packages/npm/package.json index a5a85e1..8764e13 100644 --- a/packages/npm/package.json +++ b/packages/npm/package.json @@ -1,6 +1,6 @@ { "name": "@bring-it/npm", - "version": "0.5.5", + "version": "0.5.6", "description": "Publish npm packages when needed", "license": "MIT", "author": { @@ -44,7 +44,7 @@ "execa": "^8.0.1", "ini": "^4.1.3", "is-url": "^1.2.4", - "semver": "^7.6.2", + "semver": "^7.6.3", "validate-npm-package-name": "^5.0.1" }, "peerDependencies": { diff --git a/packages/sample/package.json b/packages/sample/package.json index 94ec36c..7ae7b04 100644 --- a/packages/sample/package.json +++ b/packages/sample/package.json @@ -1,6 +1,6 @@ { "name": "@bring-it/sample", - "version": "0.4.4", + "version": "0.4.5", "description": "Generate code sample files", "license": "MIT", "author": { @@ -39,7 +39,7 @@ "prepublishOnly": "pnpm run build" }, "dependencies": { - "globby": "^14.0.1" + "globby": "^14.0.2" }, "peerDependencies": { "@bring-it/cli": "workspace:^" diff --git a/packages/sentry/package.json b/packages/sentry/package.json index effd736..a088daa 100644 --- a/packages/sentry/package.json +++ b/packages/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@bring-it/sentry", - "version": "0.5.3", + "version": "0.5.4", "description": "Update sentry artifacts", "license": "MIT", "author": { @@ -39,7 +39,7 @@ "prepublishOnly": "pnpm run build" }, "dependencies": { - "globby": "^14.0.1" + "globby": "^14.0.2" }, "devDependencies": { "@npmcli/promise-spawn": "^7.0.2" diff --git a/packages/sftp/package.json b/packages/sftp/package.json index 8dbfa4b..00ddb9e 100644 --- a/packages/sftp/package.json +++ b/packages/sftp/package.json @@ -1,6 +1,6 @@ { "name": "@bring-it/sftp", - "version": "0.3.3", + "version": "0.3.4", "description": "SFTP deployment tool for frontend", "license": "MIT", "author": { @@ -40,7 +40,7 @@ "prepublishOnly": "pnpm run build" }, "dependencies": { - "globby": "^14.0.1" + "globby": "^14.0.2" }, "devDependencies": { "lodash": "^4.17.21", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8b32338..9f76c5c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,31 +22,31 @@ importers: specifier: ^0.11.13 version: 0.11.13 '@nice-move/eslint-config-base': - specifier: ^0.11.10 - version: 0.11.10(eslint@8.57.0)(typescript@5.5.3) + specifier: ^0.11.11 + version: 0.11.11(eslint@8.57.0)(typescript@5.5.4) '@nice-move/prettier-config': specifier: ^0.12.4 version: 0.12.4(postcss@8.4.39)(prettier@3.3.3) best-shot: - specifier: ^0.5.8 + specifier: ^0.5.13 version: 0.5.13(browserslist@4.23.2) eslint: specifier: ^8.57.0 version: 8.57.0 garou: specifier: ^0.7.6 - version: 0.7.6(eslint@8.57.0)(stylelint@16.7.0(typescript@5.5.3))(typescript@5.5.3) + version: 0.7.6(eslint@8.57.0)(stylelint@16.7.0(typescript@5.5.4))(typescript@5.5.4) prettier: - specifier: ^3.3.2 + specifier: ^3.3.3 version: 3.3.3 typescript: - specifier: ^5.5.2 - version: 5.5.3 + specifier: ^5.5.4 + version: 5.5.4 packages/cli: dependencies: globby: - specifier: ^14.0.1 + specifier: ^14.0.2 version: 14.0.2 yargs: specifier: ^17.7.2 @@ -69,8 +69,8 @@ importers: specifier: ^1.3.2 version: 1.3.2 gitlog: - specifier: ^5.0.1 - version: 5.0.1 + specifier: ^5.0.2 + version: 5.0.2 lodash: specifier: ^4.17.21 version: 4.17.21 @@ -78,8 +78,8 @@ importers: specifier: ^2.1.0 version: 2.1.0 semver: - specifier: ^7.6.2 - version: 7.6.2 + specifier: ^7.6.3 + version: 7.6.3 packages/npm: dependencies: @@ -97,8 +97,8 @@ importers: specifier: ^1.2.4 version: 1.2.4 semver: - specifier: ^7.6.2 - version: 7.6.2 + specifier: ^7.6.3 + version: 7.6.3 validate-npm-package-name: specifier: ^5.0.1 version: 5.0.1 @@ -109,7 +109,7 @@ importers: specifier: workspace:^ version: link:../cli globby: - specifier: ^14.0.1 + specifier: ^14.0.2 version: 14.0.2 packages/sentry: @@ -118,7 +118,7 @@ importers: specifier: workspace:^ version: link:../cli globby: - specifier: ^14.0.1 + specifier: ^14.0.2 version: 14.0.2 devDependencies: '@npmcli/promise-spawn': @@ -131,7 +131,7 @@ importers: specifier: workspace:^ version: link:../cli globby: - specifier: ^14.0.1 + specifier: ^14.0.2 version: 14.0.2 devDependencies: lodash: @@ -371,8 +371,8 @@ packages: engines: {node: ^18.12.0 || ^20.0.0} hasBin: true - '@nice-move/eslint-config-base@0.11.10': - resolution: {integrity: sha512-sle05sIdqPEFXdv5XSVc0VDjK4Mvph2pyMpQaJY7cBGR7KyodCCMRJuC5HzcHta30q+kVyQghxAswGO1voq9zw==} + '@nice-move/eslint-config-base@0.11.11': + resolution: {integrity: sha512-TTr2KGP3aWp+qpq/LCcZ3g1n7nnhtC2Az8vhZK8UnNAScNZHCSMLgJn8rKg7uU/+tv6+ia2GQdXQhKgh1xLtEA==} engines: {node: ^18.12.0 || ^20.0.0} peerDependencies: eslint: ^8.57.0 @@ -1255,8 +1255,8 @@ packages: get-tsconfig@4.7.5: resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} - gitlog@5.0.1: - resolution: {integrity: sha512-cxKQGlSJkZn2KsSmiHh7UtjYgUio7cwHPmCW0w1cAdsARpfqHaDtrZtS8hs2/sAXySxn/baV0f7mzTXtS1d2Cg==} + gitlog@5.0.2: + resolution: {integrity: sha512-9UGZ6OnijM0nwpVPYneABbdobfeKCopLyF74r/+zd1LDLzdNMc8vAycMNn46hajzCQ44dMwcQgVedqAf2ijsPg==} engines: {node: '>= 20.x'} glob-parent@5.1.2: @@ -2075,8 +2075,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} engines: {node: '>=10'} hasBin: true @@ -2326,8 +2326,8 @@ packages: resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} engines: {node: '>= 0.4'} - typescript@5.5.3: - resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} + typescript@5.5.4: + resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} engines: {node: '>=14.17'} hasBin: true @@ -2715,19 +2715,19 @@ snapshots: cheetor: 0.13.0 eslint-formatter-pretty: 5.0.0 - '@nice-move/eslint-config-base@0.11.10(eslint@8.57.0)(typescript@5.5.3)': + '@nice-move/eslint-config-base@0.11.11(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@babel/core': 7.24.8 '@babel/eslint-parser': 7.24.8(@babel/core@7.24.8)(eslint@8.57.0) '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.8) '@nice-move/eslint-plugin-html': 0.0.0-beta.4(eslint@8.57.0) - '@typescript-eslint/eslint-plugin': 7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) - '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/eslint-plugin': 7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.4) eslint: 8.57.0 - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0))(eslint@8.57.0) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0) eslint-config-prettier: 9.1.0(eslint@8.57.0) eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) eslint-plugin-markdown: 5.1.0(eslint@8.57.0) eslint-plugin-n: 17.9.0(eslint@8.57.0) eslint-plugin-promise: 6.4.0(eslint@8.57.0) @@ -2825,34 +2825,34 @@ snapshots: '@types/unist@3.0.2': {} - '@typescript-eslint/eslint-plugin@7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/eslint-plugin@7.16.0(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/scope-manager': 7.16.0 - '@typescript-eslint/type-utils': 7.16.0(eslint@8.57.0)(typescript@5.5.3) - '@typescript-eslint/utils': 7.16.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/type-utils': 7.16.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/utils': 7.16.0(eslint@8.57.0)(typescript@5.5.4) '@typescript-eslint/visitor-keys': 7.16.0 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.3) + ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: - typescript: 5.5.3 + typescript: 5.5.4 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@typescript-eslint/scope-manager': 7.16.0 '@typescript-eslint/types': 7.16.0 - '@typescript-eslint/typescript-estree': 7.16.0(typescript@5.5.3) + '@typescript-eslint/typescript-estree': 7.16.0(typescript@5.5.4) '@typescript-eslint/visitor-keys': 7.16.0 debug: 4.3.5 eslint: 8.57.0 optionalDependencies: - typescript: 5.5.3 + typescript: 5.5.4 transitivePeerDependencies: - supports-color @@ -2861,21 +2861,21 @@ snapshots: '@typescript-eslint/types': 7.16.0 '@typescript-eslint/visitor-keys': 7.16.0 - '@typescript-eslint/type-utils@7.16.0(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/type-utils@7.16.0(eslint@8.57.0)(typescript@5.5.4)': dependencies: - '@typescript-eslint/typescript-estree': 7.16.0(typescript@5.5.3) - '@typescript-eslint/utils': 7.16.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/typescript-estree': 7.16.0(typescript@5.5.4) + '@typescript-eslint/utils': 7.16.0(eslint@8.57.0)(typescript@5.5.4) debug: 4.3.5 eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.5.3) + ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: - typescript: 5.5.3 + typescript: 5.5.4 transitivePeerDependencies: - supports-color '@typescript-eslint/types@7.16.0': {} - '@typescript-eslint/typescript-estree@7.16.0(typescript@5.5.3)': + '@typescript-eslint/typescript-estree@7.16.0(typescript@5.5.4)': dependencies: '@typescript-eslint/types': 7.16.0 '@typescript-eslint/visitor-keys': 7.16.0 @@ -2883,19 +2883,19 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.5.3) + semver: 7.6.3 + ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: - typescript: 5.5.3 + typescript: 5.5.4 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.16.0(eslint@8.57.0)(typescript@5.5.3)': + '@typescript-eslint/utils@7.16.0(eslint@8.57.0)(typescript@5.5.4)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@typescript-eslint/scope-manager': 7.16.0 '@typescript-eslint/types': 7.16.0 - '@typescript-eslint/typescript-estree': 7.16.0(typescript@5.5.3) + '@typescript-eslint/typescript-estree': 7.16.0(typescript@5.5.4) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -3246,14 +3246,14 @@ snapshots: dependencies: browserslist: 4.23.2 - cosmiconfig@9.0.0(typescript@5.5.3): + cosmiconfig@9.0.0(typescript@5.5.4): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.5.3 + typescript: 5.5.4 cross-spawn@7.0.3: dependencies: @@ -3463,13 +3463,13 @@ snapshots: eslint-compat-utils@0.5.1(eslint@8.57.0): dependencies: eslint: 8.57.0 - semver: 7.6.2 + semver: 7.6.3 - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0))(eslint@8.57.0): + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0): dependencies: confusing-browser-globals: 1.0.11 eslint: 8.57.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) object.assign: 4.1.5 object.entries: 1.1.8 semver: 6.3.1 @@ -3497,11 +3497,11 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.4) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -3520,7 +3520,7 @@ snapshots: eslint: 8.57.0 ignore: 5.3.1 - eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -3530,7 +3530,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -3541,7 +3541,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.4) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -3564,7 +3564,7 @@ snapshots: globals: 15.8.0 ignore: 5.3.1 minimatch: 9.0.5 - semver: 7.6.2 + semver: 7.6.3 eslint-plugin-promise@6.4.0(eslint@8.57.0): dependencies: @@ -3591,7 +3591,7 @@ snapshots: read-pkg-up: 7.0.1 regexp-tree: 0.1.27 regjsparser: 0.10.0 - semver: 7.6.2 + semver: 7.6.3 strip-indent: 3.0.0 transitivePeerDependencies: - supports-color @@ -3773,18 +3773,18 @@ snapshots: functions-have-names@1.2.3: {} - garou@0.7.6(eslint@8.57.0)(stylelint@16.7.0(typescript@5.5.3))(typescript@5.5.3): + garou@0.7.6(eslint@8.57.0)(stylelint@16.7.0(typescript@5.5.4))(typescript@5.5.4): dependencies: - '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/parser': 7.16.0(eslint@8.57.0)(typescript@5.5.4) '@yarnpkg/lockfile': 1.1.0 eslint: 8.57.0 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.16.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) flat-cache: 3.2.0 - stylelint: 16.7.0(typescript@5.5.3) + stylelint: 16.7.0(typescript@5.5.4) vue-eslint-parser: 9.4.3(eslint@8.57.0) write-file-atomic: 5.0.1 optionalDependencies: - typescript: 5.5.3 + typescript: 5.5.4 transitivePeerDependencies: - eslint-import-resolver-node - eslint-import-resolver-typescript @@ -3815,7 +3815,7 @@ snapshots: dependencies: resolve-pkg-maps: 1.0.0 - gitlog@5.0.1: + gitlog@5.0.2: dependencies: debug: 4.3.5 transitivePeerDependencies: @@ -4571,7 +4571,7 @@ snapshots: semver@6.3.1: {} - semver@7.6.2: {} + semver@7.6.3: {} serialize-javascript@6.0.2: dependencies: @@ -4700,7 +4700,7 @@ snapshots: strip-json-comments@3.1.1: {} - stylelint@16.7.0(typescript@5.5.3): + stylelint@16.7.0(typescript@5.5.4): dependencies: '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) '@csstools/css-tokenizer': 2.4.1 @@ -4709,7 +4709,7 @@ snapshots: '@dual-bundle/import-meta-resolve': 4.1.0 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 9.0.0(typescript@5.5.3) + cosmiconfig: 9.0.0(typescript@5.5.4) css-functions-list: 3.2.2 css-tree: 2.3.1 debug: 4.3.5 @@ -4809,9 +4809,9 @@ snapshots: dependencies: is-number: 7.0.0 - ts-api-utils@1.3.0(typescript@5.5.3): + ts-api-utils@1.3.0(typescript@5.5.4): dependencies: - typescript: 5.5.3 + typescript: 5.5.4 tsconfig-paths@3.15.0: dependencies: @@ -4866,7 +4866,7 @@ snapshots: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - typescript@5.5.3: {} + typescript@5.5.4: {} unbox-primitive@1.0.2: dependencies: @@ -4926,7 +4926,7 @@ snapshots: espree: 9.6.1 esquery: 1.6.0 lodash: 4.17.21 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color