Skip to content

Commit ae334f0

Browse files
committed
chore(repo): remove analysis/, benchmark/, and stale root debug/demo files
- delete analysis/ (ad-hoc notes) and benchmark/ (superseded perf scripts) - delete debug_circular.js, test_circular.js, demo_v2_gemini_complete.html, highPerfJs.md, v2_demo_bundle_full.js from repo root - drop benchmark/ references from lint/format scripts and oxc config ignores Verified: tsc 0 errors, oxlint clean, oxfmt clean, 196/196 tests pass, build artifacts unchanged
1 parent 4067424 commit ae334f0

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

.oxfmtrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"docs/**",
2020
"examples/**",
2121
"site/**",
22-
"analysis/**",
2322
"src/exp/**"
2423
]
2524
}

.oxlintrc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"docs/**",
1717
"examples/**",
1818
"site/**",
19-
"analysis/**",
2019
"src/exp/**"
2120
],
2221
"jsPlugins": ["./scripts/oxlint-plugin-cami.js"],
@@ -28,7 +27,7 @@
2827
},
2928
"overrides": [
3029
{
31-
"files": ["tests/**/*.{js,ts}", "benchmark/**/*.{js,ts}"],
30+
"files": ["tests/**/*.{js,ts}"],
3231
"rules": {
3332
"cami/cami-rules": "off"
3433
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
"build:ts": "mkdir -p examples/build && esbuild src/cami.ts --bundle --sourcemap --target=es2015 --format=esm --outfile=build/cami.module.js && cp build/cami.module.js examples/build/cami.module.js && esbuild src/cami.ts --bundle --sourcemap --target=es2015 --format=iife --global-name=cami --outfile=build/cami.cdn.js && cp build/cami.cdn.js examples/build/cami.cdn.js",
6969
"build:types": "tsc --emitDeclarationOnly",
7070
"build:minify": "mkdir -p examples/build && esbuild src/cami.ts --bundle --sourcemap --target=es2015 --minify-whitespace --minify-identifiers --format=esm --outfile=build/cami.module.js && cp build/cami.module.js examples/build/cami.module.js && esbuild src/cami.ts --bundle --sourcemap --target=es2015 --minify-whitespace --minify-identifiers --format=iife --global-name=cami --outfile=build/cami.cdn.js && cp build/cami.cdn.js examples/build/cami.cdn.js && cp build/cami.cdn.js docs/javascripts/cami.cdn.js && cp build/cami.cdn.js.map docs/javascripts/cami.cdn.js.map && sh build_examples.sh && node gzip.js",
71-
"lint": "oxlint -c .oxlintrc.json src tests benchmark scripts gzip.js",
72-
"format": "oxfmt -c .oxfmtrc.json 'src/**/*.{ts,js}' 'tests/**/*.{ts,js}' 'benchmark/**/*.{ts,js}' 'scripts/**/*.{js,mjs}' gzip.js",
73-
"format:check": "oxfmt -c .oxfmtrc.json --check 'src/**/*.{ts,js}' 'tests/**/*.{ts,js}' 'benchmark/**/*.{ts,js}' 'scripts/**/*.{js,mjs}' gzip.js",
71+
"lint": "oxlint -c .oxlintrc.json src tests scripts gzip.js",
72+
"format": "oxfmt -c .oxfmtrc.json 'src/**/*.{ts,js}' 'tests/**/*.{ts,js}' 'scripts/**/*.{js,mjs}' gzip.js",
73+
"format:check": "oxfmt -c .oxfmtrc.json --check 'src/**/*.{ts,js}' 'tests/**/*.{ts,js}' 'scripts/**/*.{js,mjs}' gzip.js",
7474
"type-check": "tsc --noEmit",
7575
"test": "cd tests && vitest run",
7676
"test:ui": "cd tests && vitest --ui",

0 commit comments

Comments
 (0)