Skip to content

Commit

Permalink
Merge pull request #25 from fdm-monster/fix/client-dependencies-shoul…
Browse files Browse the repository at this point in the history
…d-be-empty

fix: attempt to clear out dependencies
  • Loading branch information
davidzwa authored Apr 14, 2023
2 parents 298f6d1 + 0921e30 commit 321258b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/release-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ jobs:
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run build

# Clear fields that make installing harder
- name: Replace JSON Value
run: |
jq '.dependencies = {}' package.json > tmp.json && mv tmp.json package.json
jq '.devDependencies = {}' package.json > tmp.json && mv tmp.json package.json
- name: Output package.json
run: |
cat package.json
# Create github release
- name: Create release
uses: actions/create-release@v1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fdm-monster/client",
"version": "1.0.0-rc4",
"version": "1.0.0-rc5",
"private": false,
"author": "David Zwart",
"license": "AGPL-3.0-or-later",
Expand Down

0 comments on commit 321258b

Please sign in to comment.