@adukiorg/anza 0.2.7 → 0.2.8
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/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,16 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
+
## [0.2.8] — 2026-06-09
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Remove empty `importmap.json` from scaffold — HTML now points to `/dist/importmap.json`
|
|
25
|
+
- Category barrel files for generated doc pages (`docs/*/index.js`)
|
|
26
|
+
- Docs root route (`/docs`) uses `entry/` folder like other pages
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
20
30
|
## [0.2.7] — 2026-06-09
|
|
21
31
|
|
|
22
32
|
### Fixed
|
|
Binary file
|
package/bin/anza/anza-linux-x64
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/anza/anza-macos-x64
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/create/run.js
CHANGED
|
@@ -22,8 +22,6 @@ const DIRS = [
|
|
|
22
22
|
'src/styles',
|
|
23
23
|
];
|
|
24
24
|
|
|
25
|
-
const MAP = JSON.stringify({ imports: {} }, null, 2) + '\n';
|
|
26
|
-
|
|
27
25
|
const HTML = (name) => `<!DOCTYPE html>
|
|
28
26
|
<html lang="en">
|
|
29
27
|
<head>
|
|
@@ -31,7 +29,7 @@ const HTML = (name) => `<!DOCTYPE html>
|
|
|
31
29
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
32
30
|
<title>${name}</title>
|
|
33
31
|
|
|
34
|
-
<script type="importmap" src="/importmap.json"></script>
|
|
32
|
+
<script type="importmap" src="/dist/importmap.json"></script>
|
|
35
33
|
|
|
36
34
|
<link rel="stylesheet" href="/dist/tokens/index.css" />
|
|
37
35
|
<link rel="stylesheet" href="/dist/styles/index.css" />
|
|
@@ -185,7 +183,6 @@ export function run(target, name, library) {
|
|
|
185
183
|
}
|
|
186
184
|
}
|
|
187
185
|
|
|
188
|
-
write.write(join(target, 'importmap.json'), MAP);
|
|
189
186
|
write.write(join(target, 'src', 'index.html'), HTML(name));
|
|
190
187
|
write.write(join(target, 'src', 'app.js'), APP);
|
|
191
188
|
write.write(join(target, 'src', 'sw.js'), SW);
|
package/package.json
CHANGED