You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/create-awesome-node-app/CHANGELOG.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,32 @@
1
1
# create-awesome-node-app
2
2
3
+
## 0.6.6
4
+
5
+
### Patch Changes
6
+
7
+
- Fix scaffolding so full template file tree is copied instead of producing an almost empty project.
8
+
9
+
Highlights:
10
+
- Repair file discovery: removed broken readdirp negative-only filter that yielded 0 matches; now enumerate all files then apply internal skip rules.
11
+
- Correct handling of special `[src]/` token directories so template source files land in the configured `srcDir`.
12
+
- Add missing runtime dependency `fs-extra` (previously only implicitly relied upon) to prevent potential runtime module resolution errors.
13
+
- Fix `appendTemplate` mapping so templated append operations render correctly (was incorrectly using plain append loader).
14
+
- Add verbose debug logs (behind `--verbose`) for template directory resolution, first discovered file, and total operations count to ease future diagnostics.
15
+
- Strengthen smoke test to assert presence of critical scaffold artifacts (e.g. `README.md`, `tsconfig.json`, `index.html`, `eslint.config.mjs`, `src/App.tsx`, `src/main.tsx`).
16
+
17
+
Result: Running the CLI now prepares and copies ~50 operations for the React Vite starter template (previously 0), restoring expected developer experience.
Copy file name to clipboardExpand all lines: packages/create-node-app-core/CHANGELOG.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,27 @@
1
1
# @create-node-app/core
2
2
3
+
## 0.5.5
4
+
5
+
### Patch Changes
6
+
7
+
- Fix scaffolding so full template file tree is copied instead of producing an almost empty project.
8
+
9
+
Highlights:
10
+
- Repair file discovery: removed broken readdirp negative-only filter that yielded 0 matches; now enumerate all files then apply internal skip rules.
11
+
- Correct handling of special `[src]/` token directories so template source files land in the configured `srcDir`.
12
+
- Add missing runtime dependency `fs-extra` (previously only implicitly relied upon) to prevent potential runtime module resolution errors.
13
+
- Fix `appendTemplate` mapping so templated append operations render correctly (was incorrectly using plain append loader).
14
+
- Add verbose debug logs (behind `--verbose`) for template directory resolution, first discovered file, and total operations count to ease future diagnostics.
15
+
- Strengthen smoke test to assert presence of critical scaffold artifacts (e.g. `README.md`, `tsconfig.json`, `index.html`, `eslint.config.mjs`, `src/App.tsx`, `src/main.tsx`).
16
+
17
+
Result: Running the CLI now prepares and copies ~50 operations for the React Vite starter template (previously 0), restoring expected developer experience.
0 commit comments