Skip to content

Commit e9f0908

Browse files
Build/v0.3.0
1 parent 920c136 commit e9f0908

File tree

174 files changed

+3595
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+3595
-120
lines changed

.github/workflows/NPM.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ jobs:
6161

6262
- uses: actions/setup-node@v6.2.0
6363
with:
64-
node-version: "18"
64+
node-version: "24"
6565

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

6969
- name: Publish .

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 0.3.0
2+
3+
### Added
4+
5+
- **Log level filtering**: Added `Level` environment variable to control
6+
TypeScript error output independently from `NODE_ENV`
7+
- New `Level` variable using esbuild's
8+
[`LogLevel`](node_modules/.pnpm/esbuild@0.27.2/node_modules/esbuild/lib/main.d.ts)
9+
type (`'verbose' | 'debug' | 'info' | 'warning' | 'error' | 'silent'`)
10+
- New shared [`Echo`](Source/Function/Echo.ts) function for filtering output
11+
- New [`Level`](Source/Variable/Level.ts) variable for log level configuration
12+
- New [`Echo`](Source/Interface/Echo.ts) interface for the Echo callback type
13+
14+
### Changed
15+
16+
- Update all [`@module`](Source) JSDoc annotations to use file path-based module
17+
names
18+
- Refactored interface files to use TypeScript (.ts) files with proper type
19+
exports
20+
- Updated [`Exec`](Source/Function/Exec.ts) and
21+
[`Build`](Source/Function/Build.ts) functions to use shared Echo function
22+
23+
### Fixed
24+
25+
- Fixed JSDoc example comment issues with glob patterns using HTML entity
26+
encoding
27+
128
## 0.2.6
229

330
### Change

Documentation/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

Documentation/assets/custom.css

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
:root {
2+
--dark-color-background: #000;
3+
--dark-color-background-secondary: #000;
4+
--dark-code-background: #040404;
5+
--color-accent: #2463eb;
6+
--light-hl-0: #b58900;
7+
--light-hl-1: #d33682;
8+
--light-hl-2: #dc322f;
9+
--light-hl-3: #2aa198;
10+
--light-hl-4: #859900;
11+
--dark-hl-0: #ffdd00;
12+
--dark-hl-1: #ff66ff;
13+
--dark-hl-2: #ff4444;
14+
--dark-hl-3: #44ffff;
15+
--dark-hl-4: #44ff44;
16+
}
17+
18+
body #tsd-search .field label {
19+
left: 50%;
20+
margin-left: -20px;
21+
z-index: 1;
22+
text-align: center;
23+
}
24+
25+
body #tsd-search.has-focus .field label {
26+
display: none;
27+
}
28+
29+
body #tsd-search .field input {
30+
z-index: 2;
31+
}
32+
33+
body pre,
34+
body .tsd-page-toolbar,
35+
body .tsd-generator {
36+
border: none;
37+
}
38+
39+
body .tsd-navigation a,
40+
body .tsd-navigation summary > span,
41+
body .tsd-page-navigation a {
42+
padding: 0.5rem;
43+
border-radius: 8px;
44+
}
45+
46+
body .tsd-description .tsd-signatures .tsd-signature,
47+
body .tsd-signature,
48+
body .tsd-signatures .tsd-signature,
49+
body .tsd-typography td,
50+
body .tsd-typography th,
51+
body code.tsd-tag {
52+
border-radius: 12px;
53+
border-width: 2px;
54+
}

Documentation/assets/hierarchy.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg=="

Documentation/assets/highlight.css

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
:root {
2+
--light-hl-0: #008000;
3+
--dark-hl-0: #6A9955;
4+
--light-hl-1: #795E26;
5+
--dark-hl-1: #DCDCAA;
6+
--light-hl-2: #000000;
7+
--dark-hl-2: #D4D4D4;
8+
--light-hl-3: #A31515;
9+
--dark-hl-3: #CE9178;
10+
--light-hl-4: #0000FF;
11+
--dark-hl-4: #569CD6;
12+
--light-hl-5: #000000;
13+
--dark-hl-5: #C8C8C8;
14+
--light-hl-6: #001080;
15+
--dark-hl-6: #9CDCFE;
16+
--light-hl-7: #0070C1;
17+
--dark-hl-7: #4FC1FF;
18+
--light-hl-8: #267F99;
19+
--dark-hl-8: #4EC9B0;
20+
--light-hl-9: #0451A5;
21+
--dark-hl-9: #9CDCFE;
22+
--light-hl-10: #AF00DB;
23+
--dark-hl-10: #C586C0;
24+
--light-hl-11: #811F3F;
25+
--dark-hl-11: #D16969;
26+
--light-hl-12: #EE0000;
27+
--dark-hl-12: #D7BA7D;
28+
--light-hl-13: #D16969;
29+
--dark-hl-13: #CE9178;
30+
--light-hl-14: #EE0000;
31+
--dark-hl-14: #DCDCAA;
32+
--light-hl-15: #000000;
33+
--dark-hl-15: #D7BA7D;
34+
--light-hl-16: #000000FF;
35+
--dark-hl-16: #D4D4D4;
36+
--light-code-background: #FFFFFF;
37+
--dark-code-background: #1E1E1E;
38+
}
39+
40+
@media (prefers-color-scheme: light) { :root {
41+
--hl-0: var(--light-hl-0);
42+
--hl-1: var(--light-hl-1);
43+
--hl-2: var(--light-hl-2);
44+
--hl-3: var(--light-hl-3);
45+
--hl-4: var(--light-hl-4);
46+
--hl-5: var(--light-hl-5);
47+
--hl-6: var(--light-hl-6);
48+
--hl-7: var(--light-hl-7);
49+
--hl-8: var(--light-hl-8);
50+
--hl-9: var(--light-hl-9);
51+
--hl-10: var(--light-hl-10);
52+
--hl-11: var(--light-hl-11);
53+
--hl-12: var(--light-hl-12);
54+
--hl-13: var(--light-hl-13);
55+
--hl-14: var(--light-hl-14);
56+
--hl-15: var(--light-hl-15);
57+
--hl-16: var(--light-hl-16);
58+
--code-background: var(--light-code-background);
59+
} }
60+
61+
@media (prefers-color-scheme: dark) { :root {
62+
--hl-0: var(--dark-hl-0);
63+
--hl-1: var(--dark-hl-1);
64+
--hl-2: var(--dark-hl-2);
65+
--hl-3: var(--dark-hl-3);
66+
--hl-4: var(--dark-hl-4);
67+
--hl-5: var(--dark-hl-5);
68+
--hl-6: var(--dark-hl-6);
69+
--hl-7: var(--dark-hl-7);
70+
--hl-8: var(--dark-hl-8);
71+
--hl-9: var(--dark-hl-9);
72+
--hl-10: var(--dark-hl-10);
73+
--hl-11: var(--dark-hl-11);
74+
--hl-12: var(--dark-hl-12);
75+
--hl-13: var(--dark-hl-13);
76+
--hl-14: var(--dark-hl-14);
77+
--hl-15: var(--dark-hl-15);
78+
--hl-16: var(--dark-hl-16);
79+
--code-background: var(--dark-code-background);
80+
} }
81+
82+
:root[data-theme='light'] {
83+
--hl-0: var(--light-hl-0);
84+
--hl-1: var(--light-hl-1);
85+
--hl-2: var(--light-hl-2);
86+
--hl-3: var(--light-hl-3);
87+
--hl-4: var(--light-hl-4);
88+
--hl-5: var(--light-hl-5);
89+
--hl-6: var(--light-hl-6);
90+
--hl-7: var(--light-hl-7);
91+
--hl-8: var(--light-hl-8);
92+
--hl-9: var(--light-hl-9);
93+
--hl-10: var(--light-hl-10);
94+
--hl-11: var(--light-hl-11);
95+
--hl-12: var(--light-hl-12);
96+
--hl-13: var(--light-hl-13);
97+
--hl-14: var(--light-hl-14);
98+
--hl-15: var(--light-hl-15);
99+
--hl-16: var(--light-hl-16);
100+
--code-background: var(--light-code-background);
101+
}
102+
103+
:root[data-theme='dark'] {
104+
--hl-0: var(--dark-hl-0);
105+
--hl-1: var(--dark-hl-1);
106+
--hl-2: var(--dark-hl-2);
107+
--hl-3: var(--dark-hl-3);
108+
--hl-4: var(--dark-hl-4);
109+
--hl-5: var(--dark-hl-5);
110+
--hl-6: var(--dark-hl-6);
111+
--hl-7: var(--dark-hl-7);
112+
--hl-8: var(--dark-hl-8);
113+
--hl-9: var(--dark-hl-9);
114+
--hl-10: var(--dark-hl-10);
115+
--hl-11: var(--dark-hl-11);
116+
--hl-12: var(--dark-hl-12);
117+
--hl-13: var(--dark-hl-13);
118+
--hl-14: var(--dark-hl-14);
119+
--hl-15: var(--dark-hl-15);
120+
--hl-16: var(--dark-hl-16);
121+
--code-background: var(--dark-code-background);
122+
}
123+
124+
.hl-0 { color: var(--hl-0); }
125+
.hl-1 { color: var(--hl-1); }
126+
.hl-2 { color: var(--hl-2); }
127+
.hl-3 { color: var(--hl-3); }
128+
.hl-4 { color: var(--hl-4); }
129+
.hl-5 { color: var(--hl-5); }
130+
.hl-6 { color: var(--hl-6); }
131+
.hl-7 { color: var(--hl-7); }
132+
.hl-8 { color: var(--hl-8); }
133+
.hl-9 { color: var(--hl-9); }
134+
.hl-10 { color: var(--hl-10); }
135+
.hl-11 { color: var(--hl-11); }
136+
.hl-12 { color: var(--hl-12); }
137+
.hl-13 { color: var(--hl-13); }
138+
.hl-14 { color: var(--hl-14); }
139+
.hl-15 { color: var(--hl-15); }
140+
.hl-16 { color: var(--hl-16); }
141+
pre, code { background: var(--code-background); }

Documentation/assets/icons.js

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

0 commit comments

Comments
 (0)