From 78268f46ddcfb50f9408215c1439ca7676e2b70e Mon Sep 17 00:00:00 2001 From: jimmy-guzman Date: Thu, 15 Feb 2024 23:37:57 -0600 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20bump=20`commander`=20an?= =?UTF-8?q?d=20`enquirer`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 6 +++--- pnpm-lock.yaml | 18 +++++++----------- vitest.config.ts | 4 ++-- 3 files changed, 12 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 79f995e7..00cea5df 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "ts-check": "tsc -b tsconfig.json", "ts-check:watch": "pnpm ts-check --watch", "validate": "run-p lint format:check test ts-check", - "cz": "pnpm build && ./dist/index.js --commitlint", + "cz": "pnpm build && ./dist/index.mjs --commitlint", "prepack": "pnpm build && clean-pkg-json", "prepare": "is-ci || husky install" }, @@ -53,9 +53,9 @@ "@vitest/coverage-v8": "1.2.2", "ansi-colors": "4.1.3", "clean-pkg-json": "1.2.0", - "commander": "11.0.0", + "commander": "11.1.0", "commitlint": "18.6.1", - "enquirer": "2.3.6", + "enquirer": "2.4.1", "eslint": "8.56.0", "eslint-config-jimmy-guzman": "12.2.0", "husky": "9.0.11", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4f219e99..163a81a6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -32,14 +32,14 @@ devDependencies: specifier: 1.2.0 version: 1.2.0 commander: - specifier: 11.0.0 - version: 11.0.0 + specifier: 11.1.0 + version: 11.1.0 commitlint: specifier: 18.6.1 version: 18.6.1(@types/node@20.11.19)(typescript@5.3.3) enquirer: - specifier: 2.3.6 - version: 2.3.6 + specifier: 2.4.1 + version: 2.4.1 eslint: specifier: 8.56.0 version: 8.56.0 @@ -2079,11 +2079,6 @@ packages: resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} dev: true - /commander@11.0.0: - resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==} - engines: {node: '>=16'} - dev: true - /commander@11.1.0: resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} engines: {node: '>=16'} @@ -2385,11 +2380,12 @@ packages: tapable: 2.2.1 dev: true - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 + strip-ansi: 6.0.1 dev: true /env-ci@11.0.0: diff --git a/vitest.config.ts b/vitest.config.ts index ad221f1e..abb2149f 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -7,8 +7,8 @@ export default defineConfig({ coverage: { reporter: ['text', 'html', 'clover', 'json', 'lcovonly'], thresholds: { - branches: 97.98, - functions: 97.11, + branches: 97.95, + functions: 97.02, lines: 98.15, statements: 98.4, },