Post-Recovery checkpoint

This commit is contained in:
小麦 小麦
2025-06-14 07:34:23 +00:00
parent 5c99aa518a
commit 0da8836d1c
2 changed files with 4 additions and 11 deletions

View File

@ -1,10 +1,10 @@
run = "npm run dev" run = "npm run dev"
entrypoint = "src/App.jsx"
hidden = [".config", "tsconfig.json", "tsconfig.node.json", "vite.config.js", ".gitignore"] hidden = [".config", "tsconfig.json", "tsconfig.node.json", "vite.config.js", ".gitignore"]
modules = ["nodejs-20", "web", "nix"]
[nix] [nix]
channel = "stable-24_05" channel = "stable-22_11"
[env] [env]
PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin" PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin"
@ -27,4 +27,5 @@ language = "nodejs"
start = "typescript-language-server --stdio" start = "typescript-language-server --stdio"
[deployment] [deployment]
run = ["sh", "-c", "npm run dev"] build = ["sh", "-c", "npm run build"]
run = ["sh", "-c", "npm run preview"]

View File

@ -1,8 +0,0 @@
{ pkgs }: {
deps = [
pkgs.nodejs-16_x
pkgs.nodePackages.typescript-language-server
pkgs.yarn
pkgs.replitPackages.jest
];
}