-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #478 from 4lessandrodev/release/v4.1.0
Release/v4.1.0
- Loading branch information
Showing
29 changed files
with
422 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,60 @@ | ||
.PHONY: startVerdaccio stopVerdaccio publishVerdaccio addUser login build graph publish | ||
# Define the targets and the commands to be executed | ||
.PHONY: startVerdaccio stopVerdaccio publishVerdaccio addUser login build graph publish update | ||
|
||
# Start Verdaccio Docker container (local NPM registry) | ||
# This will install 'expect', pull the latest Verdaccio image, and run it. | ||
startVerdaccio: | ||
# Install the 'expect' package needed for some automation scripts | ||
sudo apt-get update && sudo apt-get install expect | ||
# Pull the latest nightly version of the Verdaccio image | ||
docker pull verdaccio/verdaccio:nightly-master | ||
# Run Verdaccio in detached mode with port 4873 exposed | ||
docker run -it -d --rm --name lib_verdaccio -p 4873:4873 verdaccio/verdaccio:nightly-master | ||
# Clear any existing NPM configuration | ||
echo "" > ./.npmrc | ||
# Set the registry to the local Verdaccio instance for project-specific use | ||
npm config set registry http://localhost:4873/ --location project | ||
|
||
# Stop the running Verdaccio Docker container | ||
stopVerdaccio: | ||
# Stop the Verdaccio container with the name 'lib_verdaccio' | ||
docker stop lib_verdaccio | ||
|
||
# Add a new user to the local NPM registry (Verdaccio) | ||
# This will execute the script that interacts with the registry to add a user | ||
addUser: | ||
./scripts/make-user.sh | ||
|
||
# Log in to the local NPM registry (Verdaccio) | ||
# This will execute the login script to authenticate the user with Verdaccio | ||
login: | ||
./scripts/login.sh | ||
|
||
# Build the project and its dependencies using npm | ||
# This includes running the general build process and the Lerna build process | ||
build: | ||
npm run build && npm run build:lerna | ||
|
||
# Build and publish packages to the local Verdaccio registry | ||
# This builds all packages using Yarn and Lerna and publishes them to the local registry | ||
publishVerdaccio: | ||
yarn build | ||
yarn build:lerna | ||
yarn lerna exec "npm publish --registry http://localhost:4873" | ||
|
||
# Generate and visualize the dependency graph of the project using Nx | ||
# This will show a graphical representation of the dependencies in the monorepo | ||
graph: | ||
yarn nx graph | ||
|
||
# Publish packages using Lerna | ||
# This command publishes packages to the specified registry using Lerna | ||
publish: | ||
yarn lerna publish | ||
|
||
# Update a specific peer dependency across all packages in the monorepo | ||
# Example usage: make update lib=rich-domain v=1.1.0 | ||
# This will update the specified peer dependency (e.g., 'rich-domain') to the given version (e.g., '1.1.0') in all package.json files in the ./packages directory | ||
# update peer dependency in all packages once | ||
update: | ||
./update-peer-dependency.sh $(lib) $(v) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.0.4-alpha.0](https://github.com/4lessandrodev/type-ddd/compare/@type-ddd/[email protected]...@type-ddd/[email protected]) (2024-12-16) | ||
|
||
|
||
|
||
## 4.0.5 (2024-11-28) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* change type create method return null [#194](https://github.com/4lessandrodev/type-ddd/issues/194) ([2cd03bf](https://github.com/4lessandrodev/type-ddd/commit/2cd03bf34387f4889a0a292ba350f2c0cfc753b7)) | ||
|
||
|
||
|
||
## 4.0.3 (2024-07-26) | ||
|
||
|
||
|
||
|
||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.0.4-alpha.0](https://github.com/4lessandrodev/type-ddd/compare/@type-ddd/[email protected]...@type-ddd/[email protected]) (2024-12-16) | ||
|
||
|
||
|
||
## 4.0.5 (2024-11-28) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* change type create method return null [#194](https://github.com/4lessandrodev/type-ddd/issues/194) ([2cd03bf](https://github.com/4lessandrodev/type-ddd/commit/2cd03bf34387f4889a0a292ba350f2c0cfc753b7)) | ||
|
||
|
||
|
||
## 4.0.3 (2024-07-26) | ||
|
||
|
||
|
||
|
||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.0.4-alpha.0](https://github.com/4lessandrodev/type-ddd/compare/@type-ddd/[email protected]...@type-ddd/[email protected]) (2024-12-16) | ||
|
||
|
||
|
||
## 4.0.5 (2024-11-28) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* change type create method return null [#194](https://github.com/4lessandrodev/type-ddd/issues/194) ([2cd03bf](https://github.com/4lessandrodev/type-ddd/commit/2cd03bf34387f4889a0a292ba350f2c0cfc753b7)) | ||
|
||
|
||
|
||
## 4.0.3 (2024-07-26) | ||
|
||
|
||
|
||
|
||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.0.5-alpha.0](https://github.com/4lessandrodev/type-ddd/compare/@type-ddd/[email protected]...@type-ddd/[email protected]) (2024-12-16) | ||
|
||
|
||
|
||
## 4.0.5 (2024-11-28) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* change type create method return null [#194](https://github.com/4lessandrodev/type-ddd/issues/194) ([2cd03bf](https://github.com/4lessandrodev/type-ddd/commit/2cd03bf34387f4889a0a292ba350f2c0cfc753b7)) | ||
* solve error module not found [#449](https://github.com/4lessandrodev/type-ddd/issues/449) ([e9d14f6](https://github.com/4lessandrodev/type-ddd/commit/e9d14f694cafc9c2123cc31055a4561f460a82d3)) | ||
|
||
|
||
|
||
## 4.0.3 (2024-07-26) | ||
|
||
|
||
|
||
|
||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.0.3-alpha.0](https://github.com/4lessandrodev/type-ddd/compare/@type-ddd/[email protected]...@type-ddd/[email protected]) (2024-12-16) | ||
|
||
**Note:** Version bump only for package @type-ddd/logger | ||
|
||
|
||
|
||
|
||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.0.4-alpha.0](https://github.com/4lessandrodev/type-ddd/compare/@type-ddd/[email protected]...@type-ddd/[email protected]) (2024-12-16) | ||
|
||
|
||
|
||
## 4.0.5 (2024-11-28) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* change type create method return null [#194](https://github.com/4lessandrodev/type-ddd/issues/194) ([2cd03bf](https://github.com/4lessandrodev/type-ddd/commit/2cd03bf34387f4889a0a292ba350f2c0cfc753b7)) | ||
|
||
|
||
|
||
## 4.0.3 (2024-07-26) | ||
|
||
|
||
|
||
|
||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.0.5-alpha.0](https://github.com/4lessandrodev/type-ddd/compare/@type-ddd/[email protected]...@type-ddd/[email protected]) (2024-12-16) | ||
|
||
|
||
|
||
## 4.0.5 (2024-11-28) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* change type create method return null [#194](https://github.com/4lessandrodev/type-ddd/issues/194) ([2cd03bf](https://github.com/4lessandrodev/type-ddd/commit/2cd03bf34387f4889a0a292ba350f2c0cfc753b7)) | ||
* solve error module not found [#449](https://github.com/4lessandrodev/type-ddd/issues/449) ([e9d14f6](https://github.com/4lessandrodev/type-ddd/commit/e9d14f694cafc9c2123cc31055a4561f460a82d3)) | ||
* solve error module not found [#449](https://github.com/4lessandrodev/type-ddd/issues/449) ([7c85419](https://github.com/4lessandrodev/type-ddd/commit/7c85419376860b9b94fbee3f16bc2b10592221f6)) | ||
|
||
|
||
|
||
## 4.0.3 (2024-07-26) | ||
|
||
|
||
|
||
|
||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
Oops, something went wrong.