nestcraftx 0.1.5 → 0.1.6

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": "nestcraftx",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "CLI to generate scalable NestJS projects with Clean Architecture and Clean Code",
5
5
  "main": "bin/nestcraft.js",
6
6
  "bin": {
@@ -145,7 +145,7 @@ export class AuthService {
145
145
  async sendOtp(email: string) {
146
146
  const otp = Math.floor(100000 + Math.random() * 900000).toString();
147
147
  this.otps.set(email, otp);
148
- console.log(\`[OTP] for ${email} is ${otp}\`);
148
+ console.log(\`[OTP] for \${email} is \${otp}\`);
149
149
  return { message: 'OTP sent' };
150
150
  }
151
151