Skip to content

Commit 01c2329

Browse files
Merge pull request #74 from TheUnderScorer/feature/apply-tokens-everywhere
feat: apply tokens to every configuration field, including nested arr…
2 parents 7aa5955 + 1c4b886 commit 01c2329

File tree

5 files changed

+248
-63
lines changed

5 files changed

+248
-63
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ $ nx semantic-release app-c --repositoryUrl "https://github.com/TheUnderScorer/n
143143
| ${WORKSPACE_DIR}| Resolves to the current workspace direcory (ex. `/Users/theunderscorer/nx-monorepo`) |
144144
145145
146-
The following options support tokens: `buildTarget`, `changelogFile`, `commitMessage`, `gitAssets`, `packageJsonDir`, `outputPath`, `plugins`'s options<sup>*</sup>, and `tagFormat`.
146+
Every available option support tokens - this included nested objects and arrays.
147147
148148
You may see other tokens like `${nextRelease.version}`, those are tokens that are replaced by semantic-release itself.
149149

package-lock.json

Lines changed: 185 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,28 @@
4343
"private": true,
4444
"dependencies": {
4545
"@nrwl/tao": "16.0.0",
46+
"@nx/devkit": "16.0.0",
4647
"@semantic-release/changelog": "6.0.2",
4748
"@semantic-release/exec": "6.0.3",
4849
"@semantic-release/git": "10.0.1",
4950
"@semantic-release/github": "8.0.7",
5051
"@semantic-release/npm": "9.0.2",
5152
"cosmiconfig": "^7.0.1",
53+
"deep-map": "^2.0.0",
54+
"es6-weak-map": "^2.0.3",
5255
"remeda": "^0.0.32",
5356
"semantic-release": "20.1.0",
54-
"semantic-release-plugin-decorators": "3.0.1",
55-
"@nx/devkit": "16.0.0"
57+
"semantic-release-plugin-decorators": "3.0.1"
5658
},
5759
"devDependencies": {
60+
"@nx/eslint-plugin": "16.0.0",
61+
"@nx/jest": "16.0.0",
62+
"@nx/js": "16.0.0",
63+
"@nx/linter": "16.0.0",
64+
"@nx/node": "16.0.0",
65+
"@nx/plugin": "16.0.0-rc.0",
66+
"@nx/web": "16.0.0",
67+
"@nx/workspace": "16.0.0",
5868
"@types/fs-extra": "^11.0.1",
5969
"@types/jest": "29.4.4",
6070
"@types/node": "18.7.1",
@@ -70,22 +80,13 @@
7080
"jest": "29.4.3",
7181
"jest-environment-jsdom": "29.4.3",
7282
"nx": "16.0.0",
83+
"nx-cloud": "16.0.5",
7384
"prettier": "2.7.1",
7485
"rimraf": "^4.1.2",
7586
"ts-jest": "29.1.0",
7687
"ts-node": "10.9.1",
7788
"ttypescript": "^1.5.13",
7889
"type-fest": "^2.8.0",
79-
"typescript": "4.9.5",
80-
"nx-cloud": "16.0.5",
81-
"@nx/workspace": "16.0.0",
82-
"@nx/linter": "16.0.0",
83-
"@nx/js": "16.0.0",
84-
"@nx/eslint-plugin": "16.0.0",
85-
"@nx/web": "16.0.0",
86-
"@nx/jest": "16.0.0",
87-
"@nx/plugin": "16.0.0-rc.0",
88-
"@nx/node": "16.0.0"
90+
"typescript": "4.9.5"
8991
}
9092
}
91-

0 commit comments

Comments
 (0)