Skip to content

Commit

Permalink
refactor: minor git submodules change
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuvssut committed May 11, 2024
1 parent 8f8b6d6 commit 982339c
Show file tree
Hide file tree
Showing 8 changed files with 154 additions and 4,106 deletions.
5 changes: 5 additions & 0 deletions .changeset/lazy-swans-wave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@zerochain/zus-sdk": patch
---

Minor Patches
2 changes: 1 addition & 1 deletion .github/workflows/changeset-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version: "lts/*"
cache: "yarn"

- name: Add Git submodule present at example/webapp
- name: Add Git submodule present at example/*
run: git submodule update --init --recursive

- name: Installing dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: "lts/*"
cache: "yarn"

- name: Add Git submodule present at example/webapp
- name: Add Git submodule present at example/*
run: git submodule update --init --recursive

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion example/website
1 change: 0 additions & 1 deletion lib/js-sdk/src/zcn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ async function blsSign(hash: string) {
}

const bytes = hexStringToByte(hash);

const sig = bridge.jsProxy.secretKey.sign(bytes);

if (!sig) {
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"private": true,
"workspaces": [
"lib/js-sdk/",
"example/*"
"example/website"
],
"scripts": {
"dev:app": "cd ./example/webapp && yarn dev",
"dev:site": "cd ./example/website && yarn dev",
"dev:lib": "cd ./lib/js-sdk && yarn dev",
"dev": "concurrently \"yarn dev:app\" \"yarn dev:lib\"",
"build:app": "cd ./example/webapp && yarn build",
"dev": "concurrently \"yarn dev:site\" \"yarn dev:lib\"",
"build:site": "cd ./example/website && yarn build",
"build:lib": "cd ./lib/js-sdk && yarn build",
"build": "yarn build:app && yarn build:lib",
"build": "yarn build:site && yarn build:lib",
"publish": "yarn changeset publish"
},
"devDependencies": {
Expand Down

0 comments on commit 982339c

Please sign in to comment.