├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── check-npm-version.js ├── cli.js ├── eslint.config.mjs ├── index.d.ts ├── index.js ├── package.json ├── pnpm-lock.yaml ├── test ├── fixtures │ ├── browserslist-diff-error │ │ ├── package-lock.json │ │ └── package.json │ ├── browserslist-diff │ │ ├── package-lock.json │ │ └── package.json │ ├── update-bun │ │ ├── bun.lockb │ │ └── package.json │ ├── update-missing │ │ ├── package-lock.json │ │ └── package.json │ ├── update-npm-shrinkwrap │ │ ├── npm-shrinkwrap.json │ │ └── package.json │ ├── update-npm │ │ ├── package-lock.json │ │ └── package.json │ ├── update-pnpm │ │ ├── package.json │ │ └── pnpm-lock.yaml │ ├── update-yarn-v2 │ │ ├── package.json │ │ └── yarn.lock │ ├── update-yarn-without-integrity │ │ ├── package.json │ │ └── yarn.lock │ ├── update-yarn-workspaces │ │ ├── package.json │ │ └── yarn.lock │ └── update-yarn │ │ ├── package.json │ │ └── yarn.lock ├── index.test.js └── utils.test.js └── utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/README.md -------------------------------------------------------------------------------- /check-npm-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/check-npm-version.js -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/cli.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/fixtures/browserslist-diff-error/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/browserslist-diff-error/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/browserslist-diff-error/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/browserslist-diff-error/package.json -------------------------------------------------------------------------------- /test/fixtures/browserslist-diff/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/browserslist-diff/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/browserslist-diff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/browserslist-diff/package.json -------------------------------------------------------------------------------- /test/fixtures/update-bun/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-bun/bun.lockb -------------------------------------------------------------------------------- /test/fixtures/update-bun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-bun/package.json -------------------------------------------------------------------------------- /test/fixtures/update-missing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-missing/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/update-missing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-missing/package.json -------------------------------------------------------------------------------- /test/fixtures/update-npm-shrinkwrap/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-npm-shrinkwrap/npm-shrinkwrap.json -------------------------------------------------------------------------------- /test/fixtures/update-npm-shrinkwrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-npm-shrinkwrap/package.json -------------------------------------------------------------------------------- /test/fixtures/update-npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-npm/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/update-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-npm/package.json -------------------------------------------------------------------------------- /test/fixtures/update-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-pnpm/package.json -------------------------------------------------------------------------------- /test/fixtures/update-pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-pnpm/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/fixtures/update-yarn-v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn-v2/package.json -------------------------------------------------------------------------------- /test/fixtures/update-yarn-v2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn-v2/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/update-yarn-without-integrity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn-without-integrity/package.json -------------------------------------------------------------------------------- /test/fixtures/update-yarn-without-integrity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn-without-integrity/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/update-yarn-workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn-workspaces/package.json -------------------------------------------------------------------------------- /test/fixtures/update-yarn-workspaces/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn-workspaces/yarn.lock -------------------------------------------------------------------------------- /test/fixtures/update-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/update-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/fixtures/update-yarn/yarn.lock -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/test/utils.test.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserslist/update-db/HEAD/utils.js --------------------------------------------------------------------------------