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.
- package/package.json +1 -1
- package/src/index.js +0 -5
package/package.json
CHANGED
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)
|