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 ab570e9
Show file tree
Hide file tree
Showing 6 changed files with 1,605 additions and 12,737 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
11 changes: 5 additions & 6 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
"cache": false
"inputs": ["production", "^production"]
},
"e2e": {
"dependsOn": ["^build"]
},
"nx-release-publish": {
"dependsOn": ["build", "^build"]
},
"@nx/jest:jest": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.*"]
},
Expand All @@ -41,7 +37,10 @@
"release": {
"projects": ["packages/*", "!packages/*-e2e"],
"version": {
"conventionalCommits": true
"conventionalCommits": true,
"generatorOptions": {
"packageRoot": "dist/{projectRoot}"
}
},
"changelog": {
"workspaceChangelog": {
Expand Down
Loading

0 comments on commit ab570e9

Please sign in to comment.