Skip to content

Commit

Permalink
attempt to fix netlify deployment (#1896)
Browse files Browse the repository at this point in the history
  • Loading branch information
artursapek committed Apr 8, 2024
1 parent 3b40798 commit 8792169
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[context.mainnet]
command = "npm run build"
command = "npm run build:netlify; npm run build:builder"
[context.production]
command = "npm run build"
command = "npm run build:netlify; npm run build:builder"
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"builder"
],
"scripts": {
"build:lib": "npm run build -w=sdk; npm run build:lib -w=wormhole-connect --if-present",
"build:netlify": "npm run build -w=sdk; npm run build:netlify -w=wormhole-connect --if-present",
"build:hosted": "npm run build -w=sdk; npm run build:hosted -w=wormhole-connect --if-present",
"build:builder": "npm run build -w=builder --if-present",
"build:lib": "npm run build -w=sdk; npm run build:lib -w=wormhole-connect",
"build:netlify": "npm run build -w=sdk; npm run build:netlify -w=wormhole-connect",
"build:hosted": "npm run build -w=sdk; npm run build:hosted -w=wormhole-connect",
"build:builder": "npm run build -w=builder",
"compile": "npm run compile --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:ci": "npm run lint:ci --workspaces --if-present",
Expand Down

0 comments on commit 8792169

Please sign in to comment.