File tree Expand file tree Collapse file tree
ipv6-site-enforcer/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131 # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI
3232 TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true)
3333 if [ -n "$TS_FILES" ]; then
34- echo "❌ TypeScript files detected - use ReScript instead"
34+ echo "❌ TypeScript files detected - use AffineScript instead"
3535 echo "$TS_FILES"
3636 exit 1
3737 fi
6767 - name : Check for tsconfig
6868 run : |
6969 if [ -f "tsconfig.json" ]; then
70- echo "❌ tsconfig.json detected - use ReScript instead"
70+ echo "❌ tsconfig.json detected - use AffineScript instead"
7171 exit 1
7272 fi
7373 echo "✅ No tsconfig.json"
Original file line number Diff line number Diff line change 1818 NEW_JS=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -E '\.(js|jsx)$' | grep -v '\.res\.js$' | grep -v '\.gen\.' | grep -v 'node_modules' || true)
1919
2020 if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then
21- echo "❌ New TS/JS files detected. Use ReScript instead."
21+ echo "❌ New TS/JS files detected. Use AffineScript instead."
2222 [ -n "$NEW_TS" ] && echo "$NEW_TS"
2323 [ -n "$NEW_JS" ] && echo "$NEW_JS"
2424 exit 1
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata:
4343| Bun | Deno |
4444| pnpm/yarn | Deno |
4545| Go | Rust |
46- | Python | Julia/Rust/ReScript |
46+ | Python | Julia/Rust/AffineScript |
4747| Java/Kotlin | Rust/Tauri/Dioxus |
4848| Swift | Tauri/Dioxus |
4949| React Native | Tauri/Dioxus |
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ jobs:
124124
125125 # TypeScript
126126 if find . -name "*.ts" -o -name "*.tsx" 2>/dev/null | grep -v node_modules | grep -v .d.ts | grep -q .; then
127- echo "::error::TypeScript files detected - use ReScript instead"
127+ echo "::error::TypeScript files detected - use AffineScript instead"
128128 exit 1
129129 fi
130130
Original file line number Diff line number Diff line change 3030 # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI
3131 TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true)
3232 if [ -n "$TS_FILES" ]; then
33- echo "❌ TypeScript files detected - use ReScript instead"
33+ echo "❌ TypeScript files detected - use AffineScript instead"
3434 echo "$TS_FILES"
3535 exit 1
3636 fi
6666 - name : Check for tsconfig
6767 run : |
6868 if [ -f "tsconfig.json" ]; then
69- echo "❌ tsconfig.json detected - use ReScript instead"
69+ echo "❌ tsconfig.json detected - use AffineScript instead"
7070 exit 1
7171 fi
7272 echo "✅ No tsconfig.json"
Original file line number Diff line number Diff line change 1717 NEW_JS=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -E '\.(js|jsx)$' | grep -v '\.res\.js$' | grep -v '\.gen\.' | grep -v 'node_modules' || true)
1818
1919 if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then
20- echo "❌ New TS/JS files detected. Use ReScript instead."
20+ echo "❌ New TS/JS files detected. Use AffineScript instead."
2121 [ -n "$NEW_TS" ] && echo "$NEW_TS"
2222 [ -n "$NEW_JS" ] && echo "$NEW_JS"
2323 exit 1
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ echo "Checking RSR compliance..."
1212
1313# Check for TypeScript
1414if find . -name " *.ts" -o -name " *.tsx" 2> /dev/null | grep -v node_modules | grep -v .d.ts | grep -q . ; then
15- echo " ERROR: TypeScript files detected - use ReScript instead"
15+ echo " ERROR: TypeScript files detected - use AffineScript instead"
1616 exit 1
1717fi
1818
3636
3737# Check for tsconfig.json
3838if [ -f " tsconfig.json" ]; then
39- echo " ERROR: tsconfig.json detected - use ReScript instead"
39+ echo " ERROR: tsconfig.json detected - use AffineScript instead"
4040 exit 1
4141fi
4242
Original file line number Diff line number Diff line change 3030 # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI
3131 TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true)
3232 if [ -n "$TS_FILES" ]; then
33- echo "❌ TypeScript files detected - use ReScript instead"
33+ echo "❌ TypeScript files detected - use AffineScript instead"
3434 echo "$TS_FILES"
3535 exit 1
3636 fi
6666 - name : Check for tsconfig
6767 run : |
6868 if [ -f "tsconfig.json" ]; then
69- echo "❌ tsconfig.json detected - use ReScript instead"
69+ echo "❌ tsconfig.json detected - use AffineScript instead"
7070 exit 1
7171 fi
7272 echo "✅ No tsconfig.json"
Original file line number Diff line number Diff line change 1717 NEW_JS=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -E '\.(js|jsx)$' | grep -v '\.res\.js$' | grep -v '\.gen\.' | grep -v 'node_modules' || true)
1818
1919 if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then
20- echo "❌ New TS/JS files detected. Use ReScript instead."
20+ echo "❌ New TS/JS files detected. Use AffineScript instead."
2121 [ -n "$NEW_TS" ] && echo "$NEW_TS"
2222 [ -n "$NEW_JS" ] && echo "$NEW_JS"
2323 exit 1
You can’t perform that action at this time.
0 commit comments