diff --git a/.changeset/beige-rings-brake.md b/.changeset/beige-rings-brake.md deleted file mode 100644 index f0ce1f5..0000000 --- a/.changeset/beige-rings-brake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"secco": patch ---- - -Correctly display additional information e.g. during `npm install` when `VERBOSE` env var is set diff --git a/.changeset/cool-actors-visit.md b/.changeset/cool-actors-visit.md deleted file mode 100644 index a2d9515..0000000 --- a/.changeset/cool-actors-visit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"secco": minor ---- - -Support Yarn Berry (currently v3 & v4) by modyfing the `.yarnrc.yml` file inside the destination before trying to install packages from the local Verdaccio registry diff --git a/.changeset/fluffy-fans-explain.md b/.changeset/fluffy-fans-explain.md deleted file mode 100644 index eaf2d0d..0000000 --- a/.changeset/fluffy-fans-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"secco": minor ---- - -Add `SECCO_VERDACCIO_PORT` environment variable. You can use this to change the default port (`4873`) when secco uses Verdaccio. diff --git a/.changeset/silver-oranges-wink.md b/.changeset/silver-oranges-wink.md deleted file mode 100644 index cc20c90..0000000 --- a/.changeset/silver-oranges-wink.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"secco": minor ---- - -You can now use secco inside destinations that are set up with [workspaces](https://docs.npmjs.com/cli/v10/using-npm/workspaces). It should work for all supported package managers (npm, yarn, pnpm, bun). - -Please note: secco will automatically use the `--force-verdaccio` flag when inside a workspaces project. diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a886f..8fba646 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # secco +## 2.2.0 + +### Minor Changes + +- [#99](https://github.com/LekoArts/secco/pull/99) [`1593131`](https://github.com/LekoArts/secco/commit/159313193103ba27f8c5fed5915e0a88552e617e) Thanks [@LekoArts](https://github.com/LekoArts)! - Support Yarn Berry (currently v3 & v4) by modyfing the `.yarnrc.yml` file inside the destination before trying to install packages from the local Verdaccio registry + +- [#101](https://github.com/LekoArts/secco/pull/101) [`d4d8ef9`](https://github.com/LekoArts/secco/commit/d4d8ef98085e74d0869af0a17b43f13989b0848e) Thanks [@LekoArts](https://github.com/LekoArts)! - Add `SECCO_VERDACCIO_PORT` environment variable. You can use this to change the default port (`4873`) when secco uses Verdaccio. + +- [#101](https://github.com/LekoArts/secco/pull/101) [`d4d8ef9`](https://github.com/LekoArts/secco/commit/d4d8ef98085e74d0869af0a17b43f13989b0848e) Thanks [@LekoArts](https://github.com/LekoArts)! - You can now use secco inside destinations that are set up with [workspaces](https://docs.npmjs.com/cli/v10/using-npm/workspaces). It should work for all supported package managers (npm, yarn, pnpm, bun). + + Please note: secco will automatically use the `--force-verdaccio` flag when inside a workspaces project. + +### Patch Changes + +- [#101](https://github.com/LekoArts/secco/pull/101) [`d4d8ef9`](https://github.com/LekoArts/secco/commit/d4d8ef98085e74d0869af0a17b43f13989b0848e) Thanks [@LekoArts](https://github.com/LekoArts)! - Correctly display additional information e.g. during `npm install` when `VERBOSE` env var is set + ## 2.1.0 ### Minor Changes diff --git a/package.json b/package.json index 66c9ba3..422cdc5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "secco", "type": "module", - "version": "2.1.0", + "version": "2.2.0", "packageManager": "pnpm@9.4.0", "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",