Releases: Thinkmill/manypkg
@manypkg/cli@0.10.0
Minor Changes
-
63cdae1
#42 Thanks @tarang9211! - Addedmanypkg run <partial package name or directory> <script>
which can be used to execute scripts for packages within a monorepo.As an example, let's say there are two packages:
@project/package-a
atpackages/pkg-a
and@project/package-b
atpackages/pkg-a
which both have astart
script,manypkg run
can be used like this:yarn manypkg run pkg-a start yarn manypkg run a start yarn manypkg run package-a start yarn manypkg run @project/package-a start yarn manypkg run packages/pkg-a start yarn manypkg run package-b start yarn manypkg run b start
The following wouldn't work though because the
package
andpkg
aren't unique among the package names/directories:yarn manypkg run package start yarn manypkg run pkg start
-
0ed3f2b
#39 Thanks @Andarist! - Added support for finding pnpm workspace packages.
Patch Changes
- Updated dependencies [
0ed3f2b
]:- find-workspaces-root@0.2.0
@manypkg/gatsby-source-workspace@0.3.0
@manypkg/gatsby-source-workspace@0.2.0
@manypkg/cli@0.9.0
Minor Changes
528bb72
#30 Thanks @mitchellhamilton! - Changed peer and dev dependency relationship check to only require that the upper bound of the dev dep range is within the peer dep range so that cases where the dev dep range allows versions lower than the lower bound of such as a peer dep with^1.0.0
and dev dep with*
are allowed and this fixes the regression in 0.8.1 where cases that should have been fine weren't like a peer dep with^1.0.0
and a dev dep with^1.1.0
@manypkg/cli@0.8.1
Patch Changes
- dcbfa46: Fix an error with the new internal dependencies being "*", which was incompatible with the peerDependency check
@manypkg/cli@0.8.0
Minor Changes
-
86bd46d: Add new check: INTERNAL_DEV_DEP_NOT_STAR
This check moves internal devDependencies between packages to be
*
- so in a case where I had a package sunshine, which depends on internal package 'sun':{ "name": "sunshine", "version": "1.0.0", "devDependencies": { "sun": "^1.0.0" } }
we will now have:
{ "name": "sunshine", "version": "1.0.0", "devDependencies": { "sun": "*" } }
This is because all internal dependencies are always linked if the version of the internal dependency is within the specified range(which is already enforced by Manypkg), and devDependencies are only relevant in local installs. Having set versions here caused packages to be patched when one of their devDependencies left the range, which was not strictly necessary.
@manypkg/gatsby-source-workspace@0.1.0
Minor Changes
- c393d90: Initial release
@manypkg/cli@0.7.0
Minor Changes
- 801a468: Add exec command that runs a command in every workspace
@manypkg/cli@0.6.0
Minor Changes
- 2e39bfa: Improve fix for external dependency range mismatches
@manypkg/cli@0.5.2
Patch Changes
- 89d7407: Exit with 0 when checks fail