Skip to content

Commit

Permalink
chore: update cardano-js-sdk to @cardano-sdk/[email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrus committed Nov 30, 2024
1 parent c39244a commit 78340f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
cardano-node.url = "github:IntersectMBO/cardano-node/9.1.0";
cardano-node.flake = false; # prevent lockfile explosion

cardano-js-sdk.url = "github:input-output-hk/cardano-js-sdk/@cardano-sdk/[email protected].2";
cardano-js-sdk.url = "github:input-output-hk/cardano-js-sdk/@cardano-sdk/[email protected].3";
cardano-js-sdk.flake = false; # we patch it & to prevent lockfile explosion

ogmios.url = "github:CardanoSolutions/ogmios/v6.5.0";
Expand Down
4 changes: 2 additions & 2 deletions nix/internal/any-darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ in rec {
# x86_64 cross-compilation won’t fly in this pure derivation:
find -type f '(' -name '*.gyp' -o -name '*.gypi' ')' \
| xargs grep -F '${changeFrom}' | cut -d: -f1 | sort --unique \
| { xargs grep -F '${changeFrom}' || true ; } | cut -d: -f1 | sort --unique \
| while IFS= read -r file
do
sed -r 's/${changeFrom}/${changeTo}/g' -i "$file"
done
# Now we have to run the install scripts manually:
find -type f -name package.json | xargs grep -RF '"install":' | cut -d: -f1 \
find -type f -name package.json | { xargs grep -RF '"install":' || true ; } | cut -d: -f1 \
| grep -vF 'node_modules/playwright/' \
| grep -vF 'node_modules/napi-macros/example/' \
| while IFS= read -r package
Expand Down
2 changes: 1 addition & 1 deletion nix/internal/x86_64-windows.nix
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ in rec {
export CHROMEDRIVER_FILEPATH="$(winepath -w ${lib.escapeShellArg (builtins.toFile "fake-chromedriver" "")})";
find -type f -name package.json | xargs grep -RF '"install":' | cut -d: -f1 \
find -type f -name package.json | { xargs grep -RF '"install":' || true ; } | cut -d: -f1 \
| grep -vF 'node_modules/playwright/' \
| while IFS= read -r package
do
Expand Down

0 comments on commit 78340f2

Please sign in to comment.