Skip to content

Commit

Permalink
fix: undeclared peer deps
Browse files Browse the repository at this point in the history
chore(release): publish 2.0.2

chore(release): publish 2.0.2

chore(release): publish 2.0.2

chore(release): publish 2.0.2
  • Loading branch information
driimus committed May 12, 2024
1 parent 3b76b16 commit 628d880
Show file tree
Hide file tree
Showing 6 changed files with 1,604 additions and 12,735 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Release
run: npx nx release -y
run: |
npx nx run-many -t build
npx nx release -y
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
dist
/tmp
/out-tsc

# dependencies
/node_modules
node_modules

# IDEs and editors
/.idea
Expand Down
8 changes: 4 additions & 4 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
"e2e": {
"dependsOn": ["^build"]
},
"nx-release-publish": {
"dependsOn": ["build", "^build"]
},
"@nx/jest:jest": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.*"]
},
Expand All @@ -41,7 +38,10 @@
"release": {
"projects": ["packages/*", "!packages/*-e2e"],
"version": {
"conventionalCommits": true
"conventionalCommits": true,
"generatorOptions": {
"packageRoot": "dist/{projectRoot}"
}
},
"changelog": {
"workspaceChangelog": {
Expand Down
Loading

0 comments on commit 628d880

Please sign in to comment.