Skip to content

Commit e7695e6

Browse files
Fix non-ASCII hyphens in docs
Replace U+2011 hyphens with ASCII '-' in 'CPU-bound' and 'CSP-safe' to avoid text-processing issues and keep terminology searchable across tools. No code changes; only documentation cleanup.
1 parent 5663e3c commit e7695e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Always reference these instructions first and fall back to search or bash comman
2525
- Default: threads enabled in dev/prod; workers = CPU cores
2626
- Set `BUILD_THREAD=0` to disable; set `BUILD_THREAD_WORKERS=<n>` to override worker count
2727
- BUILD_CACHE_COMPRESSION: Webpack filesystem cache compression
28-
- Default: `0` (no compression) for faster warm builds on CPUbound SSD machines
28+
- Default: `0` (no compression) for faster warm builds on CPU-bound SSD machines
2929
- Options: `0|false|none`, `gzip` (or `brotli` if explicitly desired)
3030
- Affects only `.cache/webpack` size/speed; does not change final artifacts
3131
- BUILD_WATCH_ONCE (dev): When set, `npm run dev` runs a single build and exits (useful for timing)
3232
- BUILD_POOL_TIMEOUT: Override thread-loader production pool timeout (ms)
3333
- Default: `2000`. Increase if workers recycle too aggressively on slow machines/CI
34-
- Source maps (dev): Dev builds emit external `.map` files next to JS bundles for CSPsafe debugging; production builds disable source maps
34+
- Source maps (dev): Dev builds emit external `.map` files next to JS bundles for CSP-safe debugging; production builds disable source maps
3535
- Symlinks: Webpack uses `resolve.symlinks: false` to improve performance and ensure consistent module identity; if you rely on `npm link`/pnpm workspaces, temporarily enable symlink resolution while developing linked packages
3636

3737
Performance defaults: esbuild handles JS/CSS minification. In development, CSS is injected via style-loader; in production, CSS is extracted via MiniCssExtractPlugin. Thread-loader is enabled by default in both dev and prod.

0 commit comments

Comments
 (0)