@shipindays/shipindays 0.1.16 → 0.1.18

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -367,7 +367,7 @@ async function main() {
367
367
  })),
368
368
  });
369
369
 
370
- const choices = { auth: authProvider, email: emailProvider, payment: paymentProvider };
370
+ const choices = { auth: authProvider, email: emailProvider, payments: paymentProvider };
371
371
 
372
372
  // 4. Git + install preferences
373
373
  const initGit = await p.confirm({
@@ -392,7 +392,7 @@ async function main() {
392
392
 
393
393
  // 6. Inject Blocks
394
394
  // The injectBlock function now handles the internal recursion correctly.
395
- const features = ["auth", "email", "payment"];
395
+ const features = ["auth", "email", "payments"];
396
396
  for (const feature of features) {
397
397
  const provider = choices[feature];
398
398
  if (provider) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipindays/shipindays",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "Open source CLI to scaffold a Next.js SaaS. Pick your auth, email, and payments wired up and ready to ship.",
5
5
  "type": "module",
6
6
  "bin": {