create-skateboard-app 1.0.6 → 1.0.7

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,4 +1,8 @@
1
1
 
2
+ 1.0.7
3
+
4
+ Add Stripe guide
5
+
2
6
  1.0.6
3
7
 
4
8
  Update config format
package/bin/cli.js CHANGED
@@ -472,7 +472,7 @@ async function main() {
472
472
  log(` Update the ${colors.cyan}backend/.env${colors.reset} file with:`);
473
473
  log(` ${colors.green}STRIPE_KEY=sk_test_your_stripe_secret_key_here${colors.reset}`);
474
474
  log(` ${colors.green}STRIPE_ENDPOINT_SECRET=whsec_your_webhook_endpoint_secret_here${colors.reset}`);
475
- log(` Get your keys from: ${colors.blue}https://dashboard.stripe.com/apikeys${colors.reset}`);
475
+ log(` Step by Step Guide: ${colors.blue}https://github.com/stevederico/skateboard#-stripe-setup${colors.reset}`);
476
476
 
477
477
  log(`\n${colors.bold}Get started with:${colors.reset}`, 'yellow');
478
478
  log(`\n ${colors.cyan}cd ${projectName}${colors.reset}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-skateboard-app",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Create a new Skateboard app with React, TailwindCSS, and more",
5
5
  "main": "index.js",
6
6
  "type": "module",