diff options
| author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2023-03-07 16:46:22 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-07 16:46:22 +0100 |
| commit | 4f720ef9d29b6f30c463b2574ce9c8995fbd4ebd (patch) | |
| tree | d1f8b6c215fcb3bd9378b1e493a3e0eece82ee47 | |
| parent | c80e10f8a8ba9c54d9eae8a4b34708c4fc6460d3 (diff) | |
| download | faker-4f720ef9d29b6f30c463b2574ce9c8995fbd4ebd.tar.xz faker-4f720ef9d29b6f30c463b2574ce9c8995fbd4ebd.zip | |
chore(deps): update dependency glob to v9 (#1903)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ST-DDT <[email protected]>
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | pnpm-lock.yaml | 22 | ||||
| -rw-r--r-- | scripts/bundle.ts | 2 |
3 files changed, 4 insertions, 22 deletions
diff --git a/package.json b/package.json index 236b3406..88e44070 100644 --- a/package.json +++ b/package.json @@ -109,7 +109,7 @@ "eslint-plugin-deprecation": "~1.3.3", "eslint-plugin-jsdoc": "~40.0.1", "eslint-plugin-prettier": "~4.2.1", - "glob": "~8.1.0", + "glob": "~9.2.1", "npm-run-all": "~4.1.5", "picocolors": "~1.0.0", "prettier": "2.8.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ced5e0ac..407fcf30 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27,7 +27,7 @@ specifiers: eslint-plugin-deprecation: ~1.3.3 eslint-plugin-jsdoc: ~40.0.1 eslint-plugin-prettier: ~4.2.1 - glob: ~8.1.0 + glob: ~9.2.1 npm-run-all: ~4.1.5 picocolors: ~1.0.0 prettier: 2.8.4 @@ -75,7 +75,7 @@ devDependencies: eslint-plugin-deprecation: 1.3.3_ycpbpc6yetojsgtrx3mwntkhsu eslint-plugin-jsdoc: [email protected] eslint-plugin-prettier: 4.2.1_u2zha4kiojzs42thzpgwygphmy - glob: 8.1.0 + glob: 9.2.1 npm-run-all: 4.1.5 picocolors: 1.0.0 prettier: 2.8.4 @@ -3131,17 +3131,6 @@ packages: path-is-absolute: 1.0.1 dev: true - /glob/8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.6 - once: 1.4.0 - dev: true - /glob/9.2.1: resolution: {integrity: sha512-Pxxgq3W0HyA3XUvSXcFhRSs+43Jsx0ddxcFrbjxNGkL2Ak5BAUBxLqI5G6ADDeCHLfzzXFhe0b1yYcctGmytMA==} engines: {node: '>=16 || 14 >=14.17'} @@ -3894,13 +3883,6 @@ packages: brace-expansion: 1.1.11 dev: true - /minimatch/5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - dev: true - /minimatch/7.4.2: resolution: {integrity: sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==} engines: {node: '>=10'} diff --git a/scripts/bundle.ts b/scripts/bundle.ts index 9f8038cb..b162a32e 100644 --- a/scripts/bundle.ts +++ b/scripts/bundle.ts @@ -1,5 +1,5 @@ import { buildSync } from 'esbuild'; -import { sync as globSync } from 'glob'; +import { globSync } from 'glob'; import { existsSync, mkdirSync, rmSync, writeFileSync } from 'node:fs'; import { allLocales } from '../src'; |
