Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jameshenry/nx-26041
Attempted repro for #26041
https://github.com/jameshenry/nx-26041
Last synced: 26 days ago
JSON representation
Attempted repro for #26041
- Host: GitHub
- URL: https://github.com/jameshenry/nx-26041
- Owner: JamesHenry
- Created: 2024-06-09T11:35:58.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-09T11:52:23.000Z (5 months ago)
- Last Synced: 2024-10-04T15:42:15.438Z (about 2 months ago)
- Language: TypeScript
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nx-26041
## Workspace project graph
## Steps
1. Check out the repo on the `main` branch and run `npm install`.
1. Make a change to button and commit it locally.
1. Run a dry-run of `nx release` and verify the output
```sh
β― nx release -dNX Running release version for project: @org/myproject-otherpackage1
@org/myproject-otherpackage1 π Reading data for package "@org/myproject-otherpackage1" from packages/otherpackage-1/package.json
@org/myproject-otherpackage1 π Resolved the current version as 0.1.2 from git tag "@org/[email protected]".
@org/myproject-otherpackage1 π« No changes were detected using git history and the conventional commits standard.
@org/myproject-otherpackage1 π« Skipping versioning "@org/myproject-otherpackage1" as no changes were detected.NX Running release version for project: @org/myproject-otherpackage2
@org/myproject-otherpackage2 π Reading data for package "@org/myproject-otherpackage2" from packages/otherpackage-2/package.json
@org/myproject-otherpackage2 π Resolved the current version as 0.3.4 from git tag "@org/[email protected]".
@org/myproject-otherpackage2 π« No changes were detected using git history and the conventional commits standard.
@org/myproject-otherpackage2 π« Skipping versioning "@org/myproject-otherpackage2" as no changes were detected.NX Running release version for project: @org/myproject-button
@org/myproject-button π Reading data for package "@org/myproject-button" from packages/button/package.json
@org/myproject-button π Resolved the current version as 1.0.0 from git tag "@org/[email protected]".
@org/myproject-button π Resolved the specifier as "minor" using git history and the conventional commits standard.
@org/myproject-button βοΈ New version 1.1.0 written to packages/button/package.jsonNX Running release version for project: @org/myproject-datepicker
@org/myproject-datepicker π Reading data for package "@org/myproject-datepicker" from packages/datepicker/package.json
@org/myproject-datepicker π Resolved the current version as 1.2.3 from git tag "@org/[email protected]".
@org/myproject-datepicker π Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-datepicker βοΈ New version 1.2.4 written to packages/datepicker/package.jsonNX Running release version for project: @org/myproject-dropdown
@org/myproject-dropdown π Reading data for package "@org/myproject-dropdown" from packages/dropdown/package.json
@org/myproject-dropdown π Resolved the current version as 4.5.6 from git tag "@org/[email protected]".
@org/myproject-dropdown π Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-dropdown βοΈ New version 4.5.7 written to packages/dropdown/package.jsonNX Running release version for project: @org/myproject-filter
@org/myproject-filter π Reading data for package "@org/myproject-filter" from packages/filter/package.json
@org/myproject-filter π Resolved the current version as 7.8.9 from git tag "@org/[email protected]".
@org/myproject-filter π Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-filter βοΈ New version 7.8.10 written to packages/filter/package.jsonNX Running release version for project: @org/myproject-modal
@org/myproject-modal π Reading data for package "@org/myproject-modal" from packages/modal/package.json
@org/myproject-modal π Resolved the current version as 10.11.12 from git tag "@org/[email protected]".
@org/myproject-modal π Resolved the specifier as "patch" because "release.version.generatorOptions.updateDependents" is enabled
@org/myproject-modal βοΈ New version 10.11.13 written to packages/modal/package.jsonUPDATE packages/button/package.json [dry-run]
"name": "@org/myproject-button",
- "version": "1.0.0"
+ "version": "1.1.0"
}UPDATE packages/datepicker/package.json [dry-run]
"name": "@org/myproject-datepicker",
- "version": "1.2.3",
+ "version": "1.2.4",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}UPDATE packages/dropdown/package.json [dry-run]
"name": "@org/myproject-dropdown",
- "version": "4.5.6",
+ "version": "4.5.7",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}UPDATE packages/filter/package.json [dry-run]
"name": "@org/myproject-filter",
- "version": "7.8.9",
+ "version": "7.8.10",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}UPDATE packages/modal/package.json [dry-run]
"name": "@org/myproject-modal",
- "version": "10.11.12",
+ "version": "10.11.13",
"dependencies": {
- "@org/myproject-button": "1.0.0"
+ "@org/myproject-button": "1.1.0"
}NX Updating npm lock file
NX Staging changed files with git
NX Previewing an entry in packages/datepicker/CHANGELOG.md for @org/[email protected]
CREATE packages/datepicker/CHANGELOG.md [dry-run]
+ ## 1.2.4 (2024-06-09)
+
+
+ ### 𧱠Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0NX Previewing an entry in packages/dropdown/CHANGELOG.md for @org/[email protected]
CREATE packages/dropdown/CHANGELOG.md [dry-run]
+ ## 4.5.7 (2024-06-09)
+
+
+ ### 𧱠Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0NX Previewing an entry in packages/button/CHANGELOG.md for @org/[email protected]
CREATE packages/button/CHANGELOG.md [dry-run]
+ ## 1.1.0 (2024-06-09)
+
+
+ ### π Features
+
+ - a change to button
+
+
+ ### β€οΈ Thank You
+
+ - βJamesHenryβNX Previewing an entry in packages/filter/CHANGELOG.md for @org/[email protected]
CREATE packages/filter/CHANGELOG.md [dry-run]
+ ## 7.8.10 (2024-06-09)
+
+
+ ### 𧱠Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0NX Previewing an entry in packages/modal/CHANGELOG.md for @org/[email protected]
CREATE packages/modal/CHANGELOG.md [dry-run]
+ ## 10.11.13 (2024-06-09)
+
+
+ ### 𧱠Updated Dependencies
+
+ - Updated @org/myproject-button to 1.1.0NX Staging changed files with git
NX Committing changes with git
NX Tagging commit with git
NX Skipped publishing packages.
NOTE: The "dryRun" flag means no changes were made.
```