cmyr-template-cli 1.22.2 → 1.22.4
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/dist/plopfile.js +16 -0
- package/package.json +1 -1
package/dist/plopfile.js
CHANGED
|
@@ -120,6 +120,14 @@ const TEMPLATES_META_LIST = [
|
|
|
120
120
|
docker: false,
|
|
121
121
|
priority: 0,
|
|
122
122
|
},
|
|
123
|
+
{
|
|
124
|
+
name: 'react-vite-template',
|
|
125
|
+
language: 'react',
|
|
126
|
+
runtime: 'browser',
|
|
127
|
+
vueVersion: 0,
|
|
128
|
+
docker: false,
|
|
129
|
+
priority: 0,
|
|
130
|
+
},
|
|
123
131
|
{
|
|
124
132
|
name: 'react-template',
|
|
125
133
|
language: 'react',
|
|
@@ -243,6 +251,14 @@ const TEMPLATES_META_LIST = [
|
|
|
243
251
|
docker: true,
|
|
244
252
|
priority: 0,
|
|
245
253
|
},
|
|
254
|
+
{
|
|
255
|
+
name: 'spring-boot-v3-template',
|
|
256
|
+
language: 'java',
|
|
257
|
+
runtime: 'java',
|
|
258
|
+
vueVersion: 0,
|
|
259
|
+
docker: true,
|
|
260
|
+
priority: 0,
|
|
261
|
+
},
|
|
246
262
|
];
|
|
247
263
|
|
|
248
264
|
const fix = (markdown, rules) => { var _a, _b; return (_b = (_a = core.lintMarkdown(markdown, rules, true)) === null || _a === void 0 ? void 0 : _a.fixedResult) === null || _b === void 0 ? void 0 : _b.result; };
|