fix(classes.dockerfile): use a single top-level fs import instead of requiring fs inside methods

This commit is contained in:
2026-01-21 00:03:25 +00:00
parent 9805324746
commit b0f87deb4b
4 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## 2026-01-21 - 1.4.2 - fix(classes.dockerfile)
use a single top-level fs import instead of requiring fs inside methods
- Added top-level import: import * as fs from 'fs' in ts/classes.dockerfile.ts
- Removed inline require('fs') calls and replaced with the imported fs in constructor and test() to keep imports consistent
- No behavioral change expected; this is a cleanup/refactor to standardize module usage
## 2026-01-20 - 1.4.1 - fix(docs)
update README: expand usage, installation, quick start, features, troubleshooting and migration notes