Skip to content

Commit 8440beb

Browse files
style(Worker): Replace em dashes with hyphens in CHANGELOG and comments
The CHANGELOG.md and a comment in Register.ts contained em dashes (β€”) which were replaced with standard hyphens (-) for consistency with the project's plain text formatting standards. This affects version headers ([v2.1], [v2.0], [v1.3], [v1.2], [v1.1]) and list item prefixes in the changelog, as well as a comment in Register.ts.
1 parent ea2856b commit 8440beb

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to Worker (Service Worker) are documented here.
44
Format: [Keep a Changelog](https://keepachangelog.com/).
55

6-
## [v2.1] β€” Q2 2026: Full Workbench Lift
6+
## [v2.1] - Q2 2026: Full Workbench Lift
77

88
### Changed
99

@@ -12,7 +12,7 @@ Format: [Keep a Changelog](https://keepachangelog.com/).
1212
- ESBuild structure simplified (+703 lines output)
1313
- README expanded (+196 lines architecture diagrams)
1414

15-
## [v2.0] β€” Q1 2026: Editor Launch Sprint
15+
## [v2.0] - Q1 2026: Editor Launch Sprint
1616

1717
### Added
1818

@@ -26,30 +26,30 @@ Format: [Keep a Changelog](https://keepachangelog.com/).
2626

2727
- Minification toggle: source maps removed (March 11), restored (March 13)
2828

29-
## [v1.3] β€” Q4 2025: Dependency Maintenance
29+
## [v1.3] - Q4 2025: Dependency Maintenance
3030

3131
### Changed
3232

3333
- @types/serviceworker: 0.0.154 β†’ 0.0.162
3434
- Bulk file permission reset (32 files)
3535

36-
## [v1.2] β€” Q3 2025: Full Stack Integration
36+
## [v1.2] - Q3 2025: Full Stack Integration
3737

3838
### Changed
3939

4040
- @types/serviceworker: 0.0.148 β†’ 0.0.154
4141
- Build infrastructure stable
4242

43-
## [v1.1] β€” Q2 2025: Architecture Buildout
43+
## [v1.1] - Q2 2025: Architecture Buildout
4444

4545
### Added
4646

47-
- `Source/Worker.ts` β€” main Service Worker registration entry point
48-
- `Source/Worker/Register.ts` β€” client-side registration with IIFE pattern
49-
- `Source/Worker/CSS/Load.ts` β€” dynamic CSS-to-JS transpilation interceptor
50-
- `Source/Worker/Policy.ts` β€” Content Security Policy enforcement
51-
- `Source/Configuration/ESBuild/Worker.ts` β€” 2-stage ESBuild config
52-
- `Source/Configuration/ESBuild/Target.ts` β€” target bundling config
47+
- `Source/Worker.ts` - main Service Worker registration entry point
48+
- `Source/Worker/Register.ts` - client-side registration with IIFE pattern
49+
- `Source/Worker/CSS/Load.ts` - dynamic CSS-to-JS transpilation interceptor
50+
- `Source/Worker/Policy.ts` - Content Security Policy enforcement
51+
- `Source/Configuration/ESBuild/Worker.ts` - 2-stage ESBuild config
52+
- `Source/Configuration/ESBuild/Target.ts` - target bundling config
5353
- Caching strategy: CACHE_CORE (network-first nav) + CACHE_ASSET (cache-first
5454
static)
5555
- Encrypted auth token management with auto-refresh

β€ŽSource/Worker/Register.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ void ((): void => {
236236
}
237237
};
238238

239-
// Kick off the registration at block scope β€” NOT from inside
239+
// Kick off the registration at block scope - NOT from inside
240240
// `Control` itself. Previously this scheduler sat inside Control's
241241
// body, which meant nothing ever invoked Control the first time:
242242
// the bare block just declared Control and exited, leaving it

0 commit comments

Comments
Β (0)