Skip to content

Commit c36f764

Browse files
committed
Update built bundle
1 parent 3886044 commit c36f764

5 files changed

Lines changed: 12 additions & 7 deletions

File tree

.github/workflows/build-bundle.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ jobs:
2323
cache: 'npm'
2424

2525
- run: npm install
26-
- run: npm run build
27-
- run: npm run export
26+
- run: npm run bundle
2827

2928
- uses: vimtor/action-zip
3029
with:

flow.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
{
22
"contracts": {
3-
"FCL": "./cadence/contracts/FCL.cdc",
3+
"FCL": {
4+
"source": "./cadence/contracts/FCL.cdc",
5+
"aliases": {
6+
"mainnet": "e467b9dd11fa00df",
7+
"testnet": "8c5303eaa26202d6",
8+
"emulator": "f8d6e0586b0a20c7"
9+
}
10+
},
411
"FCLCrypto": {
512
"source": "./cadence/contracts/FCLCrypto.cdc",
613
"aliases": {
714
"mainnet": "b4b82a1c9d21d284",
8-
"testnet": "74daa6f9c7ef24b1"
15+
"testnet": "74daa6f9c7ef24b1",
16+
"emulator": "b4b82a1c9d21d284"
917
}
1018
}
1119
},

go/wallet/bundle.zip

2.1 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"tsc": "./node_modules/typescript/bin/tsc",
1313
"test": "cypress run",
1414
"check": "eslint . && npm run tsc",
15-
"export": "next export",
16-
"bundle": "next build && next export",
15+
"bundle": "next build",
1716
"zip": "cd ./out && zip -FSr ../go/wallet/bundle.zip . && cd ..",
1817
"config": "cp .env.development ./go/wallet",
1918
"go-server": "npm run bundle && npm run zip && npm run config && go run ./go/wallet/cmd/main.go"

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
},
2828
"include": [
2929
"next-env.d.ts",
30-
"types/**/*.d.ts",
3130
"**/*.ts",
3231
"**/*.tsx"
3332
],

0 commit comments

Comments
 (0)