Skip to content

Commit

Permalink
chore(release): publish 0.0.0-e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikPieper committed Jun 24, 2024
1 parent 61a7e39 commit 8368d24
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## 0.0.0-e2e (2024-06-24)

### 🚀 Features

- **sveltekit:** upgrade versions and allow CLI overrides ([f867fb34](https://github.com/nxext/nx-extensions/commit/f867fb34))

### 🩹 Fixes

- **stencil:** allow ArrayLiteralExpression in addCodeIntoArray ([f24475d5](https://github.com/nxext/nx-extensions/commit/f24475d5))
- **stencil:** resolve `validateConfig` error from @stencil/core@14.17.0 onward ([f5b87252](https://github.com/nxext/nx-extensions/commit/f5b87252))
- **stencil:** remove gitignore addage ([b6e8e8be](https://github.com/nxext/nx-extensions/commit/b6e8e8be))

### ❤️ Thank You

- Dominik Pieper @DominikPieper
- kristianmandrup @kristianmandrup
- Maarten Van Hoof @mrtnvh
- Sharief Orie
17 changes: 16 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
}
},
"targetDefaults": {
"nx-release-publish": {
"options": {
"packageRoot": "dist/packages/{projectName}"
}
},
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
Expand Down Expand Up @@ -122,6 +127,16 @@
"parallel": 1,
"defaultBase": "main",
"release": {
"projects": ["*", "!docs", "!stencil", "!*-e2e", "!e2e-*"]
"projects": ["*", "!docs", "!stencil", "!common", "!*-e2e", "!e2e-*"],
"releaseTagPattern": "release/{version}",
"git": {
"commitMessage": "chore(release): {version}"
},
"version": {
"generatorOptions": {
"packageRoot": "dist/packages/{projectName}",
"currentVersionResolver": "git-tag"
}
}
}
}
15 changes: 14 additions & 1 deletion packages/common/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,18 @@
}
}
},
"tags": []
"tags": [],
"release": {
"version": {
"generatorOptions": {
"packageRoot": "dist/{projectRoot}",
"currentVersionResolver": "git-tag"
}
}
},
"nx-release-publish": {
"options": {
"packageRoot": "dist/{projectRoot}"
}
}
}

0 comments on commit 8368d24

Please sign in to comment.