Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .changeset/heavy-ways-admire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
"@onflow/config": minor
"@onflow/demo": minor
"@onflow/fcl-react-native": minor
"@onflow/fcl-core": minor
"@onflow/react-core": minor
"@onflow/react-sdk": minor
"@onflow/transport-http": patch
"@onflow/fcl-rainbowkit-adapter": minor
"@onflow/fcl-ethereum-provider": minor
"@onflow/fcl-wagmi-adapter": minor
---

Trigger Changeset Release workflow.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ jobs:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
contents: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -78,3 +80,6 @@ jobs:
# https://github.com/changesets/changesets/issues/1152
NODE_AUTH_TOKEN: ""
NPM_TOKEN: ""

- name: Push tags
run: git push origin --tags
78 changes: 39 additions & 39 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions packages/fcl-ethereum-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"homepage": "https://onflow.org",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onflow/flow-js-sdk.git"
"url": "git+ssh://[email protected]/onflow/fcl-js.git"
},
"bugs": {
"url": "https://github.com/onflow/flow-js-sdk/issues"
"url": "https://github.com/onflow/fcl-js/issues"
},
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/fcl-rainbowkit-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"homepage": "https://onflow.org",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onflow/flow-js-sdk.git"
"url": "git+ssh://[email protected]/onflow/fcl-js.git"
},
"bugs": {
"url": "https://github.com/onflow/flow-js-sdk/issues"
"url": "https://github.com/onflow/fcl-js/issues"
},
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/fcl-wagmi-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"homepage": "https://onflow.org",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onflow/flow-js-sdk.git"
"url": "git+ssh://[email protected]/onflow/fcl-js.git"
},
"bugs": {
"url": "https://github.com/onflow/flow-js-sdk/issues"
"url": "https://github.com/onflow/fcl-js/issues"
},
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
Expand Down
7 changes: 5 additions & 2 deletions packages/react-core/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"name": "@onflow/react-core",
"version": "0.7.0",
"description": "Platform-agnostic React hooks and utilities for Flow blockchain (private internal package)",
"private": true,
"description": "Platform-agnostic React hooks and utilities for Flow blockchain",
"license": "Apache-2.0",
"author": "Flow Foundation",
"homepage": "https://flow.com",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onflow/fcl-js.git"
},
"bugs": {
"url": "https://github.com/onflow/fcl-js/issues"
},
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.module.js",
Expand All @@ -20,6 +22,7 @@
"types"
],
"scripts": {
"prepublishOnly": "npm test && npm run build",
"test": "jest",
"build": "fcl-bundle",
"build:types": "tsc",
Expand Down
Loading