@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.
- package/index.js +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,
|
|
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", "
|
|
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