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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-skill-hub",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "configKey": "skillHub",
5
5
  "compatibility": {
6
6
  "nuxt": ">=4.3.0"
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.5";
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)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-skill-hub",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Teach your AI agent the Nuxt way with best practices and module guidance.",
5
5
  "repository": {
6
6
  "type": "git",