@teispace/next-maker 1.16.0 → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.16.1](https://github.com/teispace/npm-packages/compare/next-maker-v1.16.0...next-maker-v1.16.1) (2026-04-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **next-maker:** eliminate concurrent spinners in init flow ([aa0f9d2](https://github.com/teispace/npm-packages/commit/aa0f9d255772b3b76d76a3963e95ecb73ec07d2b))
9
+ * **next-maker:** never auto-delete user-content dirs in remove ([f862698](https://github.com/teispace/npm-packages/commit/f862698fa9ab63e6fde56494a2286e65b45e2afd))
10
+
3
11
  ## [1.16.0](https://github.com/teispace/npm-packages/compare/next-maker-v1.15.1...next-maker-v1.16.0) (2026-04-26)
4
12
 
5
13
 
package/README.md CHANGED
@@ -177,6 +177,8 @@ npx @teispace/next-maker remove <feature> [options]
177
177
 
178
178
  Anything the manifest can't safely undo (e.g. unwrapping an outer JSX wrap with multiple sibling providers) is reported as `manual cleanup` rather than guessed.
179
179
 
180
+ `remove` will **never recursively delete a directory that may hold user-authored content** — `src/app/[locale]/` (your pages), `src/i18n/` (your translations), `src/store/` (your slices), `src/lib/utils/http/` (your service code), and `test/` (your helpers) are flagged in the manifest with `containsUserContent: true` and surface as manual-cleanup with a hint. Move what you want to keep, then `rm -rf` the rest by hand.
181
+
180
182
  ```bash
181
183
  # Preview the effect
182
184
  npx @teispace/next-maker remove redux --dry-run