nuxt-skill-hub 0.0.3 → 0.0.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/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-skill-hub",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "configKey": "skillHub",
5
5
  "compatibility": {
6
6
  "nuxt": ">=4.3.0"
package/dist/module.mjs CHANGED
@@ -13,7 +13,7 @@ import { fileURLToPath } from 'mlly';
13
13
  import { downloadTemplate } from 'giget';
14
14
  import { ofetch } from 'ofetch';
15
15
 
16
- const version = "0.0.3";
16
+ const version = "0.0.4";
17
17
  const packageJson = {
18
18
  version: version};
19
19
 
@@ -1742,6 +1742,9 @@ const module$1 = defineNuxtModule({
1742
1742
  logger.info("Skipping skill generation in CI");
1743
1743
  return;
1744
1744
  }
1745
+ if (nuxt.options._prepare) {
1746
+ return;
1747
+ }
1745
1748
  const configuredSkillName = options.skillName?.trim();
1746
1749
  let resolvedSkillName;
1747
1750
  if (configuredSkillName && isValidSkillName(configuredSkillName)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-skill-hub",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Teach your AI agent the Nuxt way with best practices and module guidance.",
5
5
  "repository": {
6
6
  "type": "git",