heraspec 0.1.2 → 0.1.3

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.
Files changed (20) hide show
  1. package/bin/heraspec.js +8 -1
  2. package/bin/heraspec.js.map +2 -2
  3. package/dist/core/templates/skills/documents/templates/documentation-landing-page.html +57 -0
  4. package/dist/core/templates/skills/documents/templates/documentation.html +41 -0
  5. package/dist/core/templates/skills/documents/templates/landing-script.js +38 -0
  6. package/dist/core/templates/skills/documents/templates/landing-style.css +158 -0
  7. package/dist/core/templates/skills/documents/templates/script.js +56 -0
  8. package/dist/core/templates/skills/documents/templates/style.css +155 -0
  9. package/dist/core/templates/skills/documents/templates/technical-doc-template.md +16 -0
  10. package/dist/core/templates/skills/documents/templates/user-guide-template.md +16 -0
  11. package/dist/core/templates/skills/documents-skill.md +52 -90
  12. package/dist/core/templates/skills/wordpress-plugin-standard/templates/admin-dashboard.php +47 -0
  13. package/dist/core/templates/skills/wordpress-plugin-standard/templates/admin-settings.php +60 -0
  14. package/dist/core/templates/skills/wordpress-plugin-standard/templates/assets/admin-css.css +22 -0
  15. package/dist/core/templates/skills/wordpress-plugin-standard/templates/assets/admin-js.js +15 -0
  16. package/dist/core/templates/skills/wordpress-plugin-standard/templates/plugin-main.php +169 -0
  17. package/dist/core/templates/skills/wordpress-plugin-standard/templates/readme.txt +41 -0
  18. package/dist/core/templates/skills/wordpress-plugin-standard/templates/uninstall.php +21 -0
  19. package/dist/core/templates/skills/wordpress-plugin-standard-skill.md +80 -0
  20. package/package.json +1 -1
package/bin/heraspec.js CHANGED
@@ -2333,7 +2333,8 @@ var SKILL_TEMPLATE_MAP = {
2333
2333
  },
2334
2334
  "documents": {
2335
2335
  templateFileName: "documents-skill.md",
2336
- isCrossCutting: true
2336
+ isCrossCutting: true,
2337
+ resourceDirs: ["documents/templates"]
2337
2338
  },
2338
2339
  "content-optimization": {
2339
2340
  templateFileName: "content-optimization-skill.md",
@@ -2366,6 +2367,12 @@ var SKILL_TEMPLATE_MAP = {
2366
2367
  isCrossCutting: false,
2367
2368
  projectType: "wordpress",
2368
2369
  resourceDirs: ["ux-element/templates"]
2370
+ },
2371
+ "wordpress:plugin-standard": {
2372
+ templateFileName: "wordpress-plugin-standard-skill.md",
2373
+ isCrossCutting: false,
2374
+ projectType: "wordpress",
2375
+ resourceDirs: ["wordpress-plugin-standard/templates"]
2369
2376
  }
2370
2377
  };
2371
2378
  function getSkillTemplateInfo(skillName, projectType) {