@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.
- package/.claude/commands/debug-diff.md +95 -0
- package/.claude/commands/fix-component.md +134 -0
- package/.claude/commands/git.md +37 -0
- package/.claude/commands/release.md +16 -0
- package/.claude/settings.json +36 -0
- package/.cursor/mcp.json +8 -0
- package/.gitignore +4 -0
- package/.mcp.json +14 -0
- package/.vscode/settings.json +9 -1
- package/.yarnrc.yml +3 -0
- package/CHANGELOG.md +78 -0
- package/CLAUDE.md +14 -0
- package/README.md +16 -8
- package/__assets/_libs/.markuplintrc +6 -0
- package/__assets/_libs/component/c-card-list.css +1 -1
- package/__assets/_libs/component/c-card.css +3 -3
- package/__assets/_libs/component/c-content-main.css +12 -12
- package/__assets/_libs/component/c-footer.css +5 -5
- package/__assets/_libs/component/c-header.css +8 -8
- package/__assets/_libs/component/c-media-list.css +1 -1
- package/__assets/_libs/component/c-media.css +4 -4
- package/__assets/_libs/component/c-nav-breadcrumb.css +4 -4
- package/__assets/_libs/component/c-nav-breadcrumb.pug +1 -1
- package/__assets/_libs/component/c-nav-global.css +8 -8
- package/__assets/_libs/component/c-nav-sitemap.css +4 -4
- package/__assets/_libs/component/c-page-home.css +1 -1
- package/__assets/_libs/component/c-page-sub.css +1 -1
- package/__assets/_libs/component/c-pagination.css +5 -5
- package/__assets/_libs/mixin/meta-basercms.pug +14 -0
- package/__assets/_libs/mixin/meta.pug +6 -3
- package/__assets/htdocs/__tmpl/index.pug +1 -1
- package/__assets/htdocs/index.json +4 -0
- package/__assets/htdocs/index.pug +2 -9
- package/cspell.json +2 -1
- package/htdocs/__tmpl/__burger_editor/img/bg-sample.png +0 -0
- package/htdocs/__tmpl/__burger_editor/js/bge_modules/bge_functions.min.js +11 -0
- package/htdocs/files/images/sample.png +0 -0
- package/kamado.config.ts +48 -0
- package/package.json +41 -25
- package/.clineignore +0 -6
- package/.clinerules +0 -17
- package/__assets/_libs/data/blocks.html +0 -71
- package/__assets/_libs/data/breadcrumbs.js +0 -77
- package/__assets/_libs/data/titlelist.js +0 -16
- package/ai-tasks/create-component.md +0 -127
- package/ai-tasks/create-page.md +0 -110
- package/ai-tasks/page-to-burger.md +0 -68
- package/eleventy.config.mjs +0 -71
package/eleventy.config.mjs
DELETED
|
@@ -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
|
-
}
|