create-skateboard-app 1.0.9 → 1.1.0

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,7 @@
1
1
 
2
+ 1.1.0
3
+ changed constants to include /api route
4
+
2
5
  1.0.9
3
6
 
4
7
  Add black color
package/bin/cli.js CHANGED
@@ -241,8 +241,8 @@ async function collectProjectConfig(projectName) {
241
241
  }
242
242
 
243
243
  // Default values for removed questions
244
- const backendURL = 'https://api.example.com';
245
- const devBackendURL = 'http://localhost:8000';
244
+ const backendURL = '/api';
245
+ const devBackendURL = 'http://localhost:8000/api';
246
246
  const companyName = 'Your Company';
247
247
 
248
248
  // Read pages from the downloaded template's constants.json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-skateboard-app",
3
- "version": "1.0.9",
3
+ "version": "1.1.0",
4
4
  "description": "Create a new Skateboard app with React, TailwindCSS, and more",
5
5
  "main": "index.js",
6
6
  "type": "module",