Skip to content

Commit 10e2936

Browse files
committed
fix(docs-site): docs changes should be committed back to repo
1 parent 65193fc commit 10e2936

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.releaserc.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,19 @@ module.exports = {
4040
'npx ts-node tools/scripts/patch-package-versions ${nextRelease.version}',
4141
publishCmd: [
4242
'npx ts-node tools/scripts/publish-all ${nextRelease.version} ${nextRelease.channel}',
43+
'nx deploy docs-site',
4344
].join(' && '),
44-
successCmd: 'nx deploy docs-site',
4545
},
4646
],
4747
[
4848
'@semantic-release/git',
4949
{
50-
assets: ['CHANGELOG.md', 'package.json', 'packages/*/package.json', 'docs'],
50+
assets: [
51+
'CHANGELOG.md',
52+
'package.json',
53+
'packages/*/package.json',
54+
'docs',
55+
],
5156
message:
5257
"release: <%= nextRelease.version %> [skip ci]\n\n<%= nextRelease.notes %> \n\n<%= new Date().toLocaleDateString('en-US', {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric' }) %>",
5358
},

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"default": {
2020
"runner": "@nrwl/nx-cloud",
2121
"options": {
22-
"cacheableOperations": ["build", "lint", "test", "e2e"],
22+
"cacheableOperations": ["build", "lint", "test", "e2e", "smoke"],
2323
"accessToken": "ZTMwZjcyY2ItZWRjYS00NzZjLTg3ZmQtYzdjM2Y3OGIzNDdhfHJlYWQtd3JpdGU=",
2424
"canTrackAnalytics": false,
2525
"showUsageWarnings": true

tsconfig.base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"@nx-dotnet/dotnet": ["packages/dotnet/src/index.ts"],
2121
"@nx-dotnet/nx-ghpages": ["packages/nx-ghpages/src/index.ts"],
2222
"@nx-dotnet/nxdoc": ["packages/nxdoc/src/index.ts"],
23+
"@nx-dotnet/smoke/core": ["smoke/core/src/index.ts"],
2324
"@nx-dotnet/typescript": ["packages/typescript/src/index.ts"],
24-
"@nx-dotnet/utils": ["packages/utils/src/index.ts"],
25-
"@nx-dotnet/smoke/core": ["smoke/core/src/index.ts"]
25+
"@nx-dotnet/utils": ["packages/utils/src/index.ts"]
2626
}
2727
},
2828
"exclude": ["node_modules", "tmp"]

workspace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"version": 2,
33
"projects": {
44
"core": "packages/core",
5-
"smoke-core": "smoke/core",
65
"core-e2e": "e2e/core-e2e",
76
"docs-site": "apps/docs-site",
87
"dotnet": "packages/dotnet",
9-
"nx-ghpages-e2e": "e2e/nx-ghpages-e2e",
108
"nx-ghpages": "packages/nx-ghpages",
9+
"nx-ghpages-e2e": "e2e/nx-ghpages-e2e",
1110
"nxdoc": "packages/nxdoc",
1211
"nxdoc-e2e": "e2e/nxdoc-e2e",
12+
"smoke-core": "smoke/core",
1313
"typescript": "packages/typescript",
1414
"typescript-e2e": "e2e/typescript-e2e",
1515
"utils": "packages/utils"

0 commit comments

Comments
 (0)