@tndhuy/create-app 1.2.7 → 1.2.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tndhuy/create-app",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "create-app": "dist/cli.js"
@@ -25,7 +25,8 @@ export class TransformInterceptor<T> implements NestInterceptor<T, unknown> {
25
25
  context.getClass(),
26
26
  ]);
27
27
 
28
- // Internal first: If not explicitly marked as Public API, return RAW data
28
+ // If not explicitly marked as Public API (or similar decorator), return RAW data
29
+ // This allows internal/system calls to remain untouched while Public APIs are standardized.
29
30
  if (!isPublic) {
30
31
  return next.handle();
31
32
  }
@@ -25,7 +25,8 @@ export class TransformInterceptor<T> implements NestInterceptor<T, unknown> {
25
25
  context.getClass(),
26
26
  ]);
27
27
 
28
- // Internal first: If not explicitly marked as Public API, return RAW data
28
+ // If not explicitly marked as Public API (or similar decorator), return RAW data
29
+ // This allows internal/system calls to remain untouched while Public APIs are standardized.
29
30
  if (!isPublic) {
30
31
  return next.handle();
31
32
  }