Skip to content

Commit

Permalink
fix(workspace): update versions (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Jun 17, 2024
2 parents 0e7f76b + 0b1c167 commit 17e4615
Show file tree
Hide file tree
Showing 19 changed files with 10,678 additions and 10,749 deletions.
4 changes: 0 additions & 4 deletions .commitlintrc.json

This file was deleted.

10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,18 @@
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx nx version esbuild-meta
run: npx nx release
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/coverage
.angular

/.nx/cache
/.nx/cache
/.nx/workspace-data
1 change: 1 addition & 0 deletions commitlint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default {extends: ['@commitlint/config-angular']};
12 changes: 12 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,20 @@
]
},
"release": {
"projects": ["esbuild-meta"],
"projectsRelationship": "independent",
"version": {
"conventionalCommits": true,
"preVersionCommand": "npx nx run-many -t build"
},
"changelog": {
"projectChangelogs": {
"createRelease": "github"
}
},
"releaseTagPattern": "release/{projectName}/{version}",
"git": {
"commitMessage": "ci({projectName}): publish v{version}"
}
},
"plugins": [
Expand Down
Loading

0 comments on commit 17e4615

Please sign in to comment.