Skip to content

Commit 045d2b1

Browse files
authored
chore: include common pkg in release config (#1147)
1 parent 9e5e47c commit 045d2b1

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
}
114114
},
115115
"release": {
116-
"projects": ["packages/*", "!common"],
116+
"projects": ["packages/*"],
117117
"projectsRelationship": "independent",
118118
"version": {
119119
"conventionalCommits": true,

packages/common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@nxext/common",
33
"version": "19.0.0",
4-
"description": "Core utilities for nxext Nx plugins",
4+
"description": "Common utilities for Nxext Nx plugins",
55
"author": {
66
"name": "Gion Kunz",
77
"email": "[email protected]"
88
},
99
"repository": {
1010
"type": "git",
1111
"url": "https://github.com/nxext/nx-extensions",
12-
"directory": "packages/core"
12+
"directory": "packages/Common"
1313
},
1414
"bugs": {
1515
"url": "https://github.com/nxext/nx-extensions/issues"

tools/scripts/start-local-registry.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,7 @@ export default async () => {
3131
},
3232
});
3333

34-
execFileSync('pnpm', [
35-
'nx',
36-
'run-many',
37-
'-t',
38-
'build',
39-
'--exclude',
40-
'docs,common',
41-
]);
34+
execFileSync('pnpm', ['nx', 'run-many', '-t', 'build', '--exclude', 'docs']);
4235

4336
await releasePublish({
4437
tag: 'e2e',

0 commit comments

Comments
 (0)