Skip to content

Commit ace71f6

Browse files
Document/v0.1.7
1 parent 3565307 commit ace71f6

28 files changed

+79
-64
lines changed

.github/workflows/NPM.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
Publish:
2020
runs-on: ubuntu-latest
21-
21+
environment: Release
2222
env:
2323
ADBLOCK: true
2424
ASTRO_TELEMETRY_DISABLED: 1
@@ -61,15 +61,13 @@ jobs:
6161

6262
- uses: actions/setup-node@v6.1.0
6363
with:
64-
node-version: "18"
65-
registry-url: "https://registry.npmjs.org"
64+
node-version: "24"
6665

67-
- run: npm install -g npm
66+
- run: npm install -g npm@latest
67+
continue-on-error: true
6868

6969
- name: Publish .
7070
continue-on-error: true
7171
working-directory: .
7272
run: |
7373
npm publish --legacy-peer-deps --ignore-scripts
74-
env:
75-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## 0.1.7
2+
3+
### Change
4+
5+
- Updated version in `package.json` to 0.1.7.
6+
- Normalized HTTPS URLs in `package.json` to lowercase scheme (`HTTPS://`
7+
`https://`).
8+
- Updated `commander` to version 14.0.2.
9+
- Updated `typedoc` to version 0.28.15.
10+
- Updated `typedoc-plugin-mdn-links` to version 5.0.10.
11+
- Updated `typedoc-plugin-zod` to version 1.4.3.
12+
- Updated `@playform/build` to version 0.2.6.
13+
- Enhanced CLI command interface documentation and added `@since` tags across
14+
modules.
15+
- Improved Typedoc plugin resolution by explicitly referencing dist files
16+
instead of relying on binary paths.
17+
- Added extensive Typedoc configuration options for better control over
18+
documentation output formatting and behavior.
19+
- Expanded JSDoc comments with detailed descriptions, examples, and parameter
20+
documentation for exported functions and interfaces.
21+
122
## 0.1.6
223

324
### Change

Target/Class/Document.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/usr/bin/env node
2-
var e=new(await import("commander")).Command().name("Document").version("0.1.6").description("Document\u2003\u{1F4C3}").argument("<File...>","File\u2003\u{1F4DD}").option("-F, --Folder <Folder>","Folder\u2003\u{1F4DC}").action((await import("../Function/Document.js")).default).parse();export{e as default};
2+
var e=new(await import("commander")).Command().name("Document").version("0.1.7").description("Document\u2003\u{1F4C3}").argument("<File...>","File\u2003\u{1F4DD}").option("-F, --Folder <Folder>","Folder\u2003\u{1F4DC}").action((await import("../Function/Document.js")).default).parse();export{e as default};

docs/assets/main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/navigation.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/style.css

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -504,8 +504,15 @@
504504
body {
505505
background: var(--color-background);
506506
font-family:
507-
-apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
508-
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
507+
-apple-system,
508+
BlinkMacSystemFont,
509+
"Segoe UI",
510+
"Noto Sans",
511+
Helvetica,
512+
Arial,
513+
sans-serif,
514+
"Apple Color Emoji",
515+
"Segoe UI Emoji";
509516
font-size: 16px;
510517
color: var(--color-text);
511518
margin: 0;
@@ -1595,9 +1602,9 @@
15951602
.container-main {
15961603
grid-template-columns:
15971604
minmax(0, 1fr) minmax(0, 2.5fr) minmax(
1598-
0,
1599-
20rem
1600-
);
1605+
0,
1606+
20rem
1607+
);
16011608
grid-template-areas: "sidebar content toc";
16021609
}
16031610

0 commit comments

Comments
 (0)