nuxt-skill-hub 0.0.5 → 0.0.6
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/module.json +1 -1
- package/dist/module.mjs +5 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -16,7 +16,7 @@ import { glob } from 'tinyglobby';
|
|
|
16
16
|
import { createConsola } from 'consola';
|
|
17
17
|
import { colorize } from 'consola/utils';
|
|
18
18
|
|
|
19
|
-
const version = "0.0.
|
|
19
|
+
const version = "0.0.6";
|
|
20
20
|
const packageJson = {
|
|
21
21
|
version: version};
|
|
22
22
|
|
|
@@ -2029,6 +2029,10 @@ const module$1 = defineNuxtModule({
|
|
|
2029
2029
|
logger.info("Skipping skill generation in CI");
|
|
2030
2030
|
return;
|
|
2031
2031
|
}
|
|
2032
|
+
if (process.argv.slice(2).includes("typecheck")) {
|
|
2033
|
+
logger.info("Skipping skill generation during typecheck");
|
|
2034
|
+
return;
|
|
2035
|
+
}
|
|
2032
2036
|
const configuredSkillName = options.skillName?.trim();
|
|
2033
2037
|
let resolvedSkillName;
|
|
2034
2038
|
if (configuredSkillName && isValidSkillName(configuredSkillName)) {
|