@d-zero/scaffold 5.0.0-beta.9 → 5.1.0

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 (48) hide show
  1. package/.claude/commands/debug-diff.md +95 -0
  2. package/.claude/commands/fix-component.md +134 -0
  3. package/.claude/commands/git.md +37 -0
  4. package/.claude/commands/release.md +16 -0
  5. package/.claude/settings.json +36 -0
  6. package/.cursor/mcp.json +8 -0
  7. package/.gitignore +4 -0
  8. package/.mcp.json +14 -0
  9. package/.vscode/settings.json +9 -1
  10. package/.yarnrc.yml +3 -0
  11. package/CHANGELOG.md +78 -0
  12. package/CLAUDE.md +14 -0
  13. package/README.md +16 -8
  14. package/__assets/_libs/.markuplintrc +6 -0
  15. package/__assets/_libs/component/c-card-list.css +1 -1
  16. package/__assets/_libs/component/c-card.css +3 -3
  17. package/__assets/_libs/component/c-content-main.css +12 -12
  18. package/__assets/_libs/component/c-footer.css +5 -5
  19. package/__assets/_libs/component/c-header.css +8 -8
  20. package/__assets/_libs/component/c-media-list.css +1 -1
  21. package/__assets/_libs/component/c-media.css +4 -4
  22. package/__assets/_libs/component/c-nav-breadcrumb.css +4 -4
  23. package/__assets/_libs/component/c-nav-breadcrumb.pug +1 -1
  24. package/__assets/_libs/component/c-nav-global.css +8 -8
  25. package/__assets/_libs/component/c-nav-sitemap.css +4 -4
  26. package/__assets/_libs/component/c-page-home.css +1 -1
  27. package/__assets/_libs/component/c-page-sub.css +1 -1
  28. package/__assets/_libs/component/c-pagination.css +5 -5
  29. package/__assets/_libs/mixin/meta-basercms.pug +14 -0
  30. package/__assets/_libs/mixin/meta.pug +6 -3
  31. package/__assets/htdocs/__tmpl/index.pug +1 -1
  32. package/__assets/htdocs/index.json +4 -0
  33. package/__assets/htdocs/index.pug +2 -9
  34. package/cspell.json +2 -1
  35. package/htdocs/__tmpl/__burger_editor/img/bg-sample.png +0 -0
  36. package/htdocs/__tmpl/__burger_editor/js/bge_modules/bge_functions.min.js +11 -0
  37. package/htdocs/files/images/sample.png +0 -0
  38. package/kamado.config.ts +48 -0
  39. package/package.json +41 -25
  40. package/.clineignore +0 -6
  41. package/.clinerules +0 -17
  42. package/__assets/_libs/data/blocks.html +0 -71
  43. package/__assets/_libs/data/breadcrumbs.js +0 -77
  44. package/__assets/_libs/data/titlelist.js +0 -16
  45. package/ai-tasks/create-component.md +0 -127
  46. package/ai-tasks/create-page.md +0 -110
  47. package/ai-tasks/page-to-burger.md +0 -68
  48. package/eleventy.config.mjs +0 -71
@@ -1,71 +0,0 @@
1
- import path from 'node:path';
2
-
3
- import eleventy from '@d-zero/builder/11ty';
4
-
5
- /**
6
- *
7
- * @param eleventyConfig
8
- */
9
- export default function (eleventyConfig) {
10
- return eleventy(eleventyConfig, {
11
- /**
12
- * Alias for the path to the directory containing the components.
13
- */
14
- alias: {
15
- '@': path.resolve(import.meta.dirname, '__assets', '_libs'),
16
- },
17
-
18
- /**
19
- * The directory where the source files are located.
20
- */
21
- // outDir: 'htdocs',
22
-
23
- /**
24
- * Prettier options.
25
- *
26
- * If `true`, use the prettier config in the project root.
27
- *
28
- * If `false`, disable prettier.
29
- *
30
- * If `object`, use the options. Merge with the prettier config in the project root.
31
- * @see https://prettier.io/docs/en/options
32
- */
33
- prettier: true,
34
-
35
- /**
36
- * Minifier options.
37
- * @see https://github.com/terser/html-minifier-terser?tab=readme-ov-file#options-quick-reference
38
- */
39
- // minifier: { minifyJS: false },
40
-
41
- /**
42
- * Line break.
43
- */
44
- // lineBreak: '\r\n',
45
-
46
- /**
47
- * Character encoding.
48
- */
49
- // charset: 'shift_jis',
50
-
51
- /**
52
- * Convert character entities
53
- */
54
- // characterEntities: true
55
-
56
- /**
57
- * Path format
58
- */
59
- // pathFormat: 'directory',
60
-
61
- /**
62
- * Automatically decode the content on the dev server.
63
- */
64
- // autoDecode: true,
65
-
66
- /**
67
- * Server Side Include options on the dev server.
68
- */
69
- // ssi: { '**/*': { encoding: 'shift_jis' } },
70
- });
71
- }