apz
Explore posts from serversCDCloudflare Developers
•Created by apz on 8/24/2023 in #pages-help
How do I disable npm install @ start`Installing project dependencies: npm install --progress=false`
How do I disable npm install on start (
Installing project dependencies: npm install --progress=false
)?
Here's my build command:
npm install -g bun && bun install --production && bun run build
Env Variable:
^ borrowed npm_flags from Sveltekit's documentation, it had worked to run pnpm installs in build v1. I've also tried with it removed. No dice.
Build/Deployment: d2a8f3d8-c26d-4b4e-8f83-8fa07155b161
Project: 0bfc5f1dffb216bf662974bd213bdf82
Logs:
28 replies
How do I use the latest version of Deno 1.34.1 using the nixpacks.toml (or) railway.toml
Hi — 1.34.1 landed a fix for node:http2(https://github.com/denoland/deno/issues/16923), which I need to use "unfurl.js" (an npm library that uses it).
deno upgrade
as a build
command doesn't work. Can't figure out how to tell nixpacks.toml / railway.toml to install a specific / latest version of deno.
This is all I want from the Dockerfile: FROM denoland/deno:1.34.1
dockerfile here: https://github.com/denoland/deno_docker#as-a-dockerfile
If someone could let me know how I can update the deno runtime without having to deal with a dockerfile, I'd really appreciate it.13 replies