change packages

This commit is contained in:
zack 2024-10-22 16:57:35 -04:00
parent c919090829
commit 2805b2e419
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
2 changed files with 22 additions and 13 deletions

View file

@ -1048,23 +1048,32 @@ let
sha512 = "Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="; sha512 = "Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==";
}; };
}; };
"phoenix-../deps/phoenix" = { "phoenix-1.7.14" = {
name = "phoenix"; name = "phoenix";
packageName = "phoenix"; packageName = "phoenix";
version = "1.7.14"; version = "1.7.14";
src = ../deps/phoenix; src = fetchurl {
url = "https://registry.npmjs.org/phoenix/-/phoenix-1.7.14.tgz";
sha512 = "3tZ76PiH/2g+Kyzhz8+GIFYrnx3lRnwi/Qt3ZUH04xpMxXL7Guerd5aaxtpWal73X+H8iLAjo2c+AgRy2KYQcQ==";
};
}; };
"phoenix_html-../deps/phoenix_html" = { "phoenix_html-3.3.4" = {
name = "phoenix_html"; name = "phoenix_html";
packageName = "phoenix_html"; packageName = "phoenix_html";
version = "4.1.0"; version = "3.3.4";
src = ../deps/phoenix_html; src = fetchurl {
url = "https://registry.npmjs.org/phoenix_html/-/phoenix_html-3.3.4.tgz";
sha512 = "IkKAeP4sAuFzwtSSUbSNP/nL0H6WHcHfpe+/F7wOzyjYtijkAO2wTH8maA7vpTRhUBU5Dck5V8SEEhDuUy1mMA==";
};
}; };
"phoenix_live_view-../deps/phoenix_live_view" = { "phoenix_live_view-1.0.0-rc.7" = {
name = "phoenix_live_view"; name = "phoenix_live_view";
packageName = "phoenix_live_view"; packageName = "phoenix_live_view";
version = "1.0.0-rc.7"; version = "1.0.0-rc.7";
src = ../deps/phoenix_live_view; src = fetchurl {
url = "https://registry.npmjs.org/phoenix_live_view/-/phoenix_live_view-1.0.0-rc.7.tgz";
sha512 = "G3fv7X/JtzrHIpNqR7REc9gAxTZkhICQWhQs6VvDgzXfkyHMQs9NqOpN00HOgCXHJPb1jxYhSMPRuyLBOmbgng==";
};
}; };
"picocolors-1.1.1" = { "picocolors-1.1.1" = {
name = "picocolors"; name = "picocolors";
@ -1724,9 +1733,9 @@ let
sources."path-key-3.1.1" sources."path-key-3.1.1"
sources."path-parse-1.0.7" sources."path-parse-1.0.7"
sources."path-scurry-1.11.1" sources."path-scurry-1.11.1"
sources."phoenix-../deps/phoenix" sources."phoenix-1.7.14"
sources."phoenix_html-../deps/phoenix_html" sources."phoenix_html-3.3.4"
sources."phoenix_live_view-../deps/phoenix_live_view" sources."phoenix_live_view-1.0.0-rc.7"
sources."picocolors-1.1.1" sources."picocolors-1.1.1"
sources."picomatch-2.3.1" sources."picomatch-2.3.1"
sources."pify-2.3.0" sources."pify-2.3.0"

View file

@ -11,9 +11,9 @@
"@esbuild/linux-x64": "^0.24.0", "@esbuild/linux-x64": "^0.24.0",
"@tailwindcss/forms": "^0.5.9", "@tailwindcss/forms": "^0.5.9",
"esbuild": "^0.24.0", "esbuild": "^0.24.0",
"phoenix": "file:../deps/phoenix", "phoenix": "^1.7.14",
"phoenix_html": "file:../deps/phoenix_html", "phoenix_html": "^3.3.4",
"phoenix_live_view": "file:../deps/phoenix_live_view", "phoenix_live_view": "^1.0.0-rc.7",
"shiki": "^1.22.0", "shiki": "^1.22.0",
"tailwindcss": "^3.4.14" "tailwindcss": "^3.4.14"
}, },