Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,11 @@ generated/tlaiser/
generated/wokelangiser/
generated/alloyiser/
generated/abi/

# npm-avoidant (standards#67)
package-lock.json
**/package-lock.json
bun.lockb
yarn.lock
pnpm-lock.yaml
.npmrc
10 changes: 5 additions & 5 deletions echidna-playground/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "@coq-jr/web",
"version": "0.1.0",
"tasks": {
"build:res": "npx rescript build",
"clean:res": "npx rescript clean",
"build:res": "deno run -A --node-modules-dir=auto npm:rescript build",
"clean:res": "deno run -A --node-modules-dir=auto npm:rescript clean",
"dev": "deno run --allow-net --allow-read server.ts",
"serve": "deno run --allow-net --allow-read server.ts",
"res:build": "rescript build",
"res:clean": "rescript clean",
"res:watch": "rescript build -w"
"res:build": "deno run -A --node-modules-dir=auto npm:rescript build",
"res:clean": "deno run -A --node-modules-dir=auto npm:rescript clean",
"res:watch": "deno run -A --node-modules-dir=auto npm:rescript build -w"
},
"imports": {
"@std/http": "jsr:@std/http@^1.0.0",
Expand Down
15 changes: 0 additions & 15 deletions echidna-playground/package.json

This file was deleted.

Loading