From 39f52aa87673783100b905a713ff929e4ccb0c57 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Nov 2024 14:54:40 +0100 Subject: [PATCH] Changesets: Version Packages (#125) Co-authored-by: github-actions[bot] --- .changeset/sixty-peas-complain.md | 19 ------------------- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- 3 files changed, 21 insertions(+), 20 deletions(-) delete mode 100644 .changeset/sixty-peas-complain.md diff --git a/.changeset/sixty-peas-complain.md b/.changeset/sixty-peas-complain.md deleted file mode 100644 index c09240e..0000000 --- a/.changeset/sixty-peas-complain.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -"secco": minor ---- - -Add support for pnpm's [`workspace:` protocol](https://pnpm.io/workspaces) and [`catalog:`](https://pnpm.io/catalogs) features inside the source directory. - -For example, if the package you want to test out has some of its dependencies defined like this: - -```json -{ - "name": "source", - "dependencies": { - "internal-dep": "workspace:*", - "react": "catalog:react" - } -} -``` - -The `workspace:*` will be transformed to `latest` before publishing (if the dependency isn't being published with secco) and the `catalog:` entries are resolved using the `pnpm-workspace.yaml` file. diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fba646..c7edd83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # secco +## 2.3.0 + +### Minor Changes + +- [#124](https://github.com/LekoArts/secco/pull/124) [`39f7eca`](https://github.com/LekoArts/secco/commit/39f7ecae275ee4fc74305f105b4918d2628f9668) Thanks [@LekoArts](https://github.com/LekoArts)! - Add support for pnpm's [`workspace:` protocol](https://pnpm.io/workspaces) and [`catalog:`](https://pnpm.io/catalogs) features inside the source directory. + + For example, if the package you want to test out has some of its dependencies defined like this: + + ```json + { + "name": "source", + "dependencies": { + "internal-dep": "workspace:*", + "react": "catalog:react" + } + } + ``` + + The `workspace:*` will be transformed to `latest` before publishing (if the dependency isn't being published with secco) and the `catalog:` entries are resolved using the `pnpm-workspace.yaml` file. + ## 2.2.0 ### Minor Changes diff --git a/package.json b/package.json index 0a415da..0f9424d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "secco", "type": "module", - "version": "2.2.0", + "version": "2.3.0", "packageManager": "pnpm@9.12.3", "description": "Local package testing made easy. secco is a command-line tool for local development. It uses Verdaccio and direct file copying to apply your latest changes to other projects.", "author": "LekoArts",