Skip to content
This repository was archived by the owner on Apr 27, 2026. It is now read-only.

Commit 298c5af

Browse files
author
Craigory Coppola
committed
feat(repo): enable semantic-release
1 parent c051d41 commit 298c5af

6 files changed

Lines changed: 37770 additions & 14 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v1
3838
- uses: bahmutov/npm-install@v1.4.5
39-
- run: yarn nx affected --target=lint --base=origin/master~1 --parallel
39+
- run: yarn nx affected -- --target=lint --base=origin/master~1 --parallel
4040

41-
semantic-release:
41+
publish-dev:
4242
runs-on: ubuntu-latest
4343
name: Publish packages via semantic release
4444
needs: [test]

.releaserc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ module.exports = {
3636
'@semantic-release/exec',
3737
{
3838
publishCmd: [
39-
// `npm set https://registry.npmjs.org/:_authToken=${process.env.NPM_TOKEN}`,
4039
'npx ts-node tools/scripts/publish-all ${nextRelease.version} ${nextRelease.channel}',
4140
].join(' && '),
4241
},

CHANGELOG.md

Lines changed: 84 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,89 @@
1-
# [0.2.0](https://github.com/nx-dotnet/nx-dotnet/compare/v0.1.4...v0.2.0) (2021-04-27)
1+
# NxDotnet
22

3+
[![Join the chat at https://gitter.im/nx-dotnet-plugin/community](https://badges.gitter.im/nx-dotnet-plugin/community.svg)](https://gitter.im/nx-dotnet-plugin/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Run CI checks](https://github.com/nx-dotnet/nx-dotnet/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/nx-dotnet/nx-dotnet/actions/workflows/main.yml)
34

4-
### Features
5+
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=nx-dotnet_nx-dotnet&metric=security_rating)](https://sonarcloud.io/dashboard?id=nx-dotnet_nx-dotnet) [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=nx-dotnet_nx-dotnet&metric=bugs)](https://sonarcloud.io/dashboard?id=nx-dotnet_nx-dotnet) [![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=nx-dotnet_nx-dotnet&metric=code_smells)](https://sonarcloud.io/dashboard?id=nx-dotnet_nx-dotnet) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=nx-dotnet_nx-dotnet&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=nx-dotnet_nx-dotnet) [![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=nx-dotnet_nx-dotnet&metric=ncloc)](https://sonarcloud.io/dashboard?id=nx-dotnet_nx-dotnet)
56

6-
* **core:** Set output path in generated project files ([96b48f8](https://github.com/nx-dotnet/nx-dotnet/commit/96b48f80054cef14e6185d123b86f96b5f463cb9))
7-
* **core:** tag nx-dotnet projects ([6442d94](https://github.com/nx-dotnet/nx-dotnet/commit/6442d94dd82e30d0b6537e97eddbcccedd799ef9))
8-
* **repo:** enable semantic release ([#26](https://github.com/nx-dotnet/nx-dotnet/issues/26)) ([04b1cbd](https://github.com/nx-dotnet/nx-dotnet/commit/04b1cbdd12160b37d72a6cc0ac69490d334f7cef))
9-
* **repo:** Update build script to utilize Nx's capabilities regarding package.json patching. ([ee80435](https://github.com/nx-dotnet/nx-dotnet/commit/ee80435dad5226f111208c98cd83cc4e3ae66b58))
7+
This project was generated using [Nx](https://nx.dev).
108

11-
### Bug Fixes
9+
<p align="center">
10+
<img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="450"><img src="https://upload.wikimedia.org/wikipedia/commons/a/a3/.NET_Logo.svg" width="450">
11+
</p>
1212

13-
* **core:** output paths still use windows separator on linux / mac ([b729fed](https://github.com/nx-dotnet/nx-dotnet/commit/b729fed5116feaeae7bcc13c35aceeed1dbfe16c))
14-
* **core:** packages not published by last CI run ([d07b9f3](https://github.com/nx-dotnet/nx-dotnet/commit/d07b9f306677110c491da2c9a2eb075d79835c1a))
13+
🔎 **Nx is a set of Extensible Dev Tools for Monorepos.**
14+
15+
## Adding capabilities to your workspace
16+
17+
Nx supports many plugins which add capabilities for developing different types of applications and different tools.
18+
19+
These capabilities include generating applications, libraries, etc as well as the devtools to test, and build projects as well.
20+
21+
Below are our plugins:
22+
23+
- [.NET](https://docs.microsoft.com/en-us/dotnet/)
24+
- `npm install --save-dev @nx-dotnet/core`
25+
26+
There are also many [community plugins](https://nx.dev/nx-community) you could add.
27+
28+
## Generate an application
29+
30+
Run `nx g @nx-dotnet/core:app my-app` to generate an application.
31+
32+
> You can use any of the plugins above to generate applications as well.
33+
34+
When using Nx, you can create multiple applications and libraries in the same workspace.
35+
36+
## Generate a library
37+
38+
Run `nx g @nx-dotnet/core:lib my-lib` to generate a library.
39+
40+
> You can also use any of the plugins above to generate libraries as well.
41+
42+
Libraries are shareable across libraries and applications.
43+
44+
<!--
45+
## Development server
46+
47+
Run `nx serve my-app` for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
48+
49+
## Code scaffolding
50+
51+
Run `nx g @nrwl/react:component my-component --project=my-app` to generate a new component.
52+
-->
53+
54+
## Build
55+
56+
Run `nx build my-app` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
57+
58+
<!--
59+
## Running unit tests
60+
61+
Run `nx test my-app` to execute the unit tests via [Jest](https://jestjs.io).
62+
63+
Run `nx affected:test` to execute the unit tests affected by a change.
64+
65+
## Running end-to-end tests
66+
67+
Run `ng e2e my-app` to execute the end-to-end tests via [Cypress](https://www.cypress.io).
68+
69+
Run `nx affected:e2e` to execute the end-to-end tests affected by a change.-->
70+
71+
## Understand your workspace
72+
73+
Run `nx dep-graph` to see a diagram of the dependencies of your projects.
74+
75+
## Further help
76+
77+
Visit the [Nx Documentation](https://nx.dev) to learn more.
78+
79+
## ☁ Nx Cloud
80+
81+
### Computation Memoization in the Cloud
82+
83+
<p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-cloud-card.png"></p>
84+
85+
Nx Cloud pairs with Nx in order to enable you to build and test code more rapidly, by up to 10 times. Even teams that are new to Nx can connect to Nx Cloud and start saving time instantly.
86+
87+
Teams using Nx gain the advantage of building full-stack applications with their preferred framework alongside Nx’s advanced code generation and project dependency graph, plus a unified experience for both frontend and backend developers.
88+
89+
Visit [Nx Cloud](https://nx.app/) to learn more.

commitlint.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const Configuration = {
2+
extends: ['@commitlint/config-conventional'],
3+
rules: {
4+
'scope-enum': [1, 'always', ['repo', 'dotnet', 'core', 'typescript']],
5+
},
6+
};
7+
8+
module.exports = Configuration;

0 commit comments

Comments
 (0)