mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-13 01:18:26 -05:00
* feat: create new @pnpm/catalogs.types package (#8026) * feat: read catalog configs from workspace manifest (#8123) * refactor: move InvalidWorkspaceManifestError to its own file * feat: read catalogs config from workspace manifest * chore: add changeset for new catalog config parsing * feat: create new `@pnpm/catalogs.protocol-parser` package (#8124) This works around a problem with pnpm's CI setup not compiling packages that are not dependencies of the main pnpm package before running these tests. https://github.com/pnpm/pnpm/pull/8027#issuecomment-2081650304 * refactor: factor out isWantedDepPrefSame to extend in a future commit (#8125) * feat: create new `@pnpm/catalogs.config` package (#8220) * refactor: remove single default catalog check This check will happen in `@pnpm/catalogs.config` instead. * feat: create new @pnpm/catalogs.config package * fix: work around CI setup not compiling orphan packages before testing This works around a problem with pnpm's CI setup not compiling packages that are not dependencies of the main pnpm package before running these tests. https://github.com/pnpm/pnpm/pull/8027#issuecomment-2081650304 * feat: create new `@pnpm/catalogs.resolver` package (#8219) * feat: create new @pnpm/catalogs.resolver package * fix: work around CI setup not compiling orphan packages before testing This works around a problem with pnpm's CI setup not compiling packages that are not dependencies of the main pnpm package before running these tests. https://github.com/pnpm/pnpm/pull/8027#issuecomment-2081650304 * feat: implement catalog protocol for publish (#8225) * feat: implement catalog protocol for install (#8221) * feat: add catalogs to @pnpm/config * refactor: factor out resolveDependenciesOfImporterDependency function * feat: implement catalog resolver and replace prefs * revert: work around CI setup not compiling orphan packages before testing * feat: record catalog lookup snapshots through propagated metadata * feat: update projects when catalogs config changes * test: add catalog protocol install tests * refactor: remove filter-packages-from-dir dependency from core tests (#8244) * refactor: remove filter-packages-from-dir dependency from core tests * test: refactor * test: refactor --------- Co-authored-by: Zoltan Kochan <z@kochan.io> --------- Co-authored-by: Zoltan Kochan <z@kochan.io>
40 lines
1020 B
JSON
40 lines
1020 B
JSON
{
|
|
"name": "@pnpm/catalogs.protocol-parser",
|
|
"version": "0.1.0",
|
|
"description": "Parse catalog protocol specifiers and return the catalog name.",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/catalogs/protocol-parser",
|
|
"keywords": [
|
|
"pnpm9",
|
|
"pnpm",
|
|
"types"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/catalogs/protocol-parser#readme",
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"compile": "tsc --build && pnpm run lint --fix",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"_test": "jest"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/catalogs.protocol-parser": "workspace:*"
|
|
}
|
|
}
|