Skip to content

Commit f816827

Browse files
authored
feat: aptos typescript-sdk and app integration (#3087)
app preview comment #3087 (comment)
2 parents 91064c0 + 1b1cf42 commit f816827

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2680
-2991
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ evm/contracts/proto/** linguist-generated
1616
*.zip filter=lfs diff=lfs merge=lfs -text
1717
site/public/union-logo.zip filter=lfs diff=lfs merge=lfs -text
1818
biome.json linguist-language=JSON-with-Comments
19+
knip.json linguist-language=JSON-with-Comments

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ move/*/build
8181
docs/generated
8282
dev-dist
8383
.zed
84-
85-
rustc-ice*
84+
rust-ice*
85+
.docs

app/.npmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
engine-strict=true
1+
engine-strict=false
22
legacy-peer-deps=true
33
@jsr:registry=https://npm.jsr.io

app/app.nix

+5-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ _: {
1919
{
2020
packages = {
2121
app = jsPkgs.buildNpmPackage {
22-
npmDepsHash = "sha256-yrqA4Qp7iiGvSo/Xk0G5adXdVqgK8nGYGdXtvLp7EPk=";
22+
npmDepsHash = "sha256-8UgNUADgd8yrpePKD/DzDrwdiXhFTRBJKbD64GW7QNU=";
2323
src = ./.;
2424
sourceRoot = "app";
25-
npmFlags = [ "--enable-pre-post-scripts" ];
25+
npmFlags = [
26+
"--loglevel=verbose"
27+
"--enable-pre-post-scripts"
28+
];
2629
pname = packageJSON.name;
2730
inherit (packageJSON) version;
2831
nativeBuildInputs = deps;

0 commit comments

Comments
 (0)