Skip to content

Commit

Permalink
Fix dependency errors.
Browse files Browse the repository at this point in the history
Signed-off-by: Aliwoto <aminnimaj@gmail.com>
  • Loading branch information
ALiwoto committed Aug 14, 2024
1 parent 8a114dc commit e84631f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 71 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,12 @@ jobs:
run: |
npm install
npm run build
- name: Get commit short hash
id: vars
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Post request
run: |
curl -s -X POST -k ${{ secrets.WEBHOOK_URL }}?TAG=${{ steps.vars.outputs.sha_short }} \
-H 'sudo-token: ${{ secrets.API_SUDO_TOKEN }}'
74 changes: 3 additions & 71 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
"typescript": "^5.5.4",
"web-vitals": "^4.2.3"
},
"overrides": {
"typescript": "^5.5.4",
"axios": "^1.7.4",
"nth-check": "^2.1.1",
"postcss": "^8.4.41"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
Expand All @@ -43,5 +49,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.24.7"
}
}

0 comments on commit e84631f

Please sign in to comment.