create-routify 1.6.1 → 1.6.2

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/package.json +1 -1
  2. package/src/index.js +0 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-routify",
3
- "version": "v1.6.1",
3
+ "version": "v1.6.2",
4
4
  "description": "A powerful cli for super-powering your routify development experience",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -116,17 +116,12 @@ const check = {
116
116
  };
117
117
 
118
118
  const getAvailableFeatures = (template) => {
119
- console.log(
120
- 'DEBUG: Available Templates:',
121
- template ? template.name : 'undefined template',
122
- );
123
119
  if (!template || !template.manifest) {
124
120
  console.error(
125
121
  'ERROR: Template or manifest is undefined. This likely means the selected starter template was not found.',
126
122
  );
127
123
  return [];
128
124
  }
129
- console.log('DEBUG: Using template manifest:', template.manifest);
130
125
 
131
126
  const features = template.manifest.features || [];
132
127
  if (template.manifest.test)