Skip to content

Commit ed1c53a

Browse files
author
Craigory Coppola
committed
fix(core): output paths still use windows separator on linux / mac
1 parent 99945f8 commit ed1c53a

File tree

3 files changed

+68
-37675
lines changed

3 files changed

+68
-37675
lines changed

CHANGELOG.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,66 @@
1+
# [0.2.0-dev.7](https://github.com/nx-dotnet/nx-dotnet/compare/v0.2.0-dev.6...v0.2.0-dev.7) (2021-04-26)
2+
3+
4+
### Bug Fixes
5+
6+
* **repo:** deployment errors ([0d92c44](https://github.com/nx-dotnet/nx-dotnet/commit/0d92c4408ecc4e49a30544b927771cd8329f6b1e))
7+
8+
9+
### Features
10+
11+
* **core:** semantic-release ([799dc55](https://github.com/nx-dotnet/nx-dotnet/commit/799dc557d168dbc8fa5cf2741d99c12c1ddbaa54))
12+
* **repo:** semantic-release ([895eb22](https://github.com/nx-dotnet/nx-dotnet/commit/895eb22b15c1078687b68ec63b1d2d577a642ecd))
13+
14+
# [0.2.0-dev.6](https://github.com/nx-dotnet/nx-dotnet/compare/v0.2.0-dev.5...v0.2.0-dev.6) (2021-04-26)
15+
16+
17+
### Bug Fixes
18+
19+
* **core:** misc ([7661829](https://github.com/nx-dotnet/nx-dotnet/commit/76618298474f555d4fb950fdbe69b8a2c65539f5))
20+
21+
# [0.2.0-dev.5](https://github.com/nx-dotnet/nx-dotnet/compare/v0.2.0-dev.4...v0.2.0-dev.5) (2021-04-26)
22+
23+
24+
### Features
25+
26+
* **core:** fix CD ([9d5b787](https://github.com/nx-dotnet/nx-dotnet/commit/9d5b787af0537946f640820c003e70275df4bda6))
27+
* **utils:** update jsdocs ([83bec44](https://github.com/nx-dotnet/nx-dotnet/commit/83bec448776d01de4c4b38b63501a3f075f1f488))
28+
29+
# [0.2.0-dev.5](https://github.com/nx-dotnet/nx-dotnet/compare/v0.2.0-dev.4...v0.2.0-dev.5) (2021-04-26)
30+
31+
32+
### Features
33+
34+
* **core:** fix CD ([9d5b787](https://github.com/nx-dotnet/nx-dotnet/commit/9d5b787af0537946f640820c003e70275df4bda6))
35+
36+
# [0.2.0-dev.4](https://github.com/nx-dotnet/nx-dotnet/compare/v0.2.0-dev.3...v0.2.0-dev.4) (2021-04-26)
37+
38+
39+
### Features
40+
41+
* **core:** fix deployments ([561f462](https://github.com/nx-dotnet/nx-dotnet/commit/561f462e288c3a6eae35683ff8e5e6eeae0b73f1))
42+
43+
# [0.2.0-dev.3](https://github.com/nx-dotnet/nx-dotnet/compare/v0.2.0-dev.2...v0.2.0-dev.3) (2021-04-26)
44+
45+
46+
### Features
47+
48+
* **core:** test sr deployment ([fbc5bbf](https://github.com/nx-dotnet/nx-dotnet/commit/fbc5bbf6665a91b44356a518452650596aad3292))
49+
50+
# [0.2.0-dev.2](https://github.com/nx-dotnet/nx-dotnet/compare/v0.2.0-dev.1...v0.2.0-dev.2) (2021-04-26)
51+
52+
53+
### Bug Fixes
54+
55+
* **core:** output paths still use windows separator on linux / mac ([b729fed](https://github.com/nx-dotnet/nx-dotnet/commit/b729fed5116feaeae7bcc13c35aceeed1dbfe16c))
56+
* **core:** packages not published by last CI run ([d07b9f3](https://github.com/nx-dotnet/nx-dotnet/commit/d07b9f306677110c491da2c9a2eb075d79835c1a))
57+
58+
59+
### Features
60+
61+
* **ci:** fix publish script ([4c6e91a](https://github.com/nx-dotnet/nx-dotnet/commit/4c6e91ab6e9450542f7bbce5c81a5ad482a5aea1))
62+
* **core:** tag nx-dotnet projects ([6442d94](https://github.com/nx-dotnet/nx-dotnet/commit/6442d94dd82e30d0b6537e97eddbcccedd799ef9))
63+
164
# [0.2.0-dev.1](https://github.com/nx-dotnet/nx-dotnet/compare/v0.1.4...v0.2.0-dev.1) (2021-04-26)
265

366

commitlint.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
const Configuration = {
22
extends: ['@commitlint/config-conventional'],
33
rules: {
4-
'scope-enum': [1, 'always', ['repo', 'dotnet', 'core', 'typescript', 'ci']],
4+
'scope-enum': [
5+
1,
6+
'always',
7+
['repo', 'dotnet', 'core', 'typescript', 'ci', 'release'],
8+
],
59
'type-enum': [1, 'always', ['test', 'docs', 'chore', 'feat', 'fix']],
610
},
711
};

0 commit comments

Comments
 (0)