cmyr-template-cli 1.22.3 → 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 +8 -0
- package/package.json +1 -1
package/dist/plopfile.js
CHANGED
|
@@ -251,6 +251,14 @@ const TEMPLATES_META_LIST = [
|
|
|
251
251
|
docker: true,
|
|
252
252
|
priority: 0,
|
|
253
253
|
},
|
|
254
|
+
{
|
|
255
|
+
name: 'spring-boot-v3-template',
|
|
256
|
+
language: 'java',
|
|
257
|
+
runtime: 'java',
|
|
258
|
+
vueVersion: 0,
|
|
259
|
+
docker: true,
|
|
260
|
+
priority: 0,
|
|
261
|
+
},
|
|
254
262
|
];
|
|
255
263
|
|
|
256
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; };
|