Commit 3cdaeba
authored
🐛 Fix plugin registration error with frozen output module (#92)
## Summary
- Removes dead code that tried to set `logger.level` on the output
module
- ES modules are frozen objects, causing "Cannot add property level,
object is not extensible" error
- The output module uses `config.verbose` internally via `configure()`,
not a `level` property
## Test plan
- [x] Verified `npx vizzly static-site --help` works without warnings
- [x] Verified `npx vizzly tdd start` works without plugin registration
errors1 parent 8a81a4f commit 3cdaeba
2 files changed
+0
-8
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | 48 | | |
53 | 49 | | |
54 | 50 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | 44 | | |
49 | 45 | | |
50 | 46 | | |
| |||
0 commit comments