Skip to content

Commit

Permalink
chore: include common pkg in release config (#1147)
Browse files Browse the repository at this point in the history
  • Loading branch information
edbzn authored Oct 16, 2024
1 parent 9e5e47c commit 045d2b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
}
},
"release": {
"projects": ["packages/*", "!common"],
"projects": ["packages/*"],
"projectsRelationship": "independent",
"version": {
"conventionalCommits": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@nxext/common",
"version": "19.0.0",
"description": "Core utilities for nxext Nx plugins",
"description": "Common utilities for Nxext Nx plugins",
"author": {
"name": "Gion Kunz",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nxext/nx-extensions",
"directory": "packages/core"
"directory": "packages/Common"
},
"bugs": {
"url": "https://github.com/nxext/nx-extensions/issues"
Expand Down
9 changes: 1 addition & 8 deletions tools/scripts/start-local-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,7 @@ export default async () => {
},
});

execFileSync('pnpm', [
'nx',
'run-many',
'-t',
'build',
'--exclude',
'docs,common',
]);
execFileSync('pnpm', ['nx', 'run-many', '-t', 'build', '--exclude', 'docs']);

await releasePublish({
tag: 'e2e',
Expand Down

0 comments on commit 045d2b1

Please sign in to comment.