Skip to content

Commit

Permalink
chore: bump
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlwn123 committed Sep 5, 2024
1 parent 0ed4330 commit 23f5ad8
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 31 deletions.
2 changes: 2 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
Expand Down
5 changes: 5 additions & 0 deletions .changeset/fuzzy-guests-sleep.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@fedimint/core-web': patch
---

Rename Package
6 changes: 0 additions & 6 deletions .changeset/giant-lies-explain.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/weak-zebras-peel.md

This file was deleted.

8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
- main
workflow_dispatch:

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
verify:
name: Verify
Expand All @@ -23,11 +25,7 @@ jobs:
- name: Install dependencies
uses: ./.github/actions/install-deps

- name: Create Release Pull Request or Publish to npm
id: changesets
- name: Create Release Pull Request
uses: changesets/action@v1
with:
publish: pnpm publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 3 additions & 1 deletion examples/vite-core/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ const JoinFederation = () => {
Join
</button>
</form>
{wallet.isOpen() && <i>(You've already joined a federation)</i>}
{!joinResult && wallet.isOpen() && (
<i>(You've already joined a federation)</i>
)}
{joinResult && <div className="success">{joinResult}</div>}
{joinError && <div className="error">{joinError}</div>}
</div>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"lint:repo": "sherif",
"preinstall": "pnpx only-allow pnpm",
"prepare": "pnpm simple-git-hooks",
"publish": "pnpm run build && pnpm changesets publish",
"changeset": "changesets",
"version": "changesets version",
"publish": "pnpm run build && pnpm changeset publish",
"changeset": "changeset",
"version": "changeset version",
"typecheck": "pnpm run --r --parallel typecheck",
"format": "prettier --write .",
"watch": "pnpm run --r --parallel --filter \"./packages/**\" watch"
Expand Down
2 changes: 1 addition & 1 deletion packages/core-web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fedimint/core-web",
"description": "Library for building web apps with a fedimint client",
"version": "0.0.0-alpha.2",
"version": "0.0.0-alpha.0",
"repository": {
"type": "git",
"url": "https://github.com/fedimint/fedimint-web-sdk.git",
Expand Down
18 changes: 9 additions & 9 deletions pnpm-lock.yaml

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

0 comments on commit 23f5ad8

Please sign in to comment.