Skip to content

Commit 230d763

Browse files
author
Jonathan D.A. Jewell
committed
chore: Remove npm artifacts, add RSR enforcement
- Remove package-lock.json and .npmrc (use deno.json instead) - Add npm-bun-blocker.yml CI workflow - Add CLAUDE.md with package manager policy RSR Policy: Deno required, npm/bun forbidden.
1 parent 32397b2 commit 230d763

2 files changed

Lines changed: 14 additions & 7753 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: NPM/Bun Blocker
2+
on: [push, pull_request]
3+
jobs:
4+
check:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- name: Block npm/bun
9+
run: |
10+
if [ -f "package-lock.json" ] || [ -f "bun.lockb" ] || [ -f ".npmrc" ]; then
11+
echo "❌ npm/bun artifacts detected. Use Deno instead."
12+
exit 1
13+
fi
14+
echo "✅ No npm/bun violations"

0 commit comments

Comments
 (0)