Skip to content

Commit c4b1ec9

Browse files
AstroCompress/v2.3.9
1 parent 77c3aad commit c4b1ec9

File tree

86 files changed

+2662
-0
lines changed

Some content is hidden

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

86 files changed

+2662
-0
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
## 2.3.9
22

3+
### Change
4+
5+
- Updated package version from `2.3.8` to `2.3.9`.
6+
- Updated contact email in `package.json` from `Source/Open@PlayForm.LTD` to
7+
`Source/Open@PlayForm.Cloud`.
8+
- Updated URL in `package.json` from `HTTPS://PlayForm.LTD` to
9+
`HTTPS://PlayForm.Cloud`.
10+
- Updated homepage URL in `package.json` to point to readme overview tab.
11+
- Updated dependencies in `package.json`:
12+
- `@playform/pipe` from `0.1.3` to `0.1.4`.
13+
- `astro` from `*` to `5.16.8`.
14+
- `commander` from `13.1.0` to `14.0.2`.
15+
- `lightningcss` from `1.29.3` to `1.30.2`.
16+
- `sharp` from `0.33.5` to `0.34.5`.
17+
- `svgo` from `3.3.2` to `4.0.0`.
18+
- `terser` from `5.39.0` to `5.44.1`.
19+
- `@playform/build` from `0.2.1` to `0.2.6`.
20+
- `browserslist` from `4.24.4` to `4.28.1`.
21+
- Removed `@ts-expect-error` comment in `Configuration/ESBuild.ts`.
22+
- Reordered import statements in `Source/Function/Image/Writesharp.ts`.
23+
- Reordered import statements in `Source/Function/Integration.ts`.
24+
- Enhanced `JSON` type definition in `Source/Interface/Option.ts` to support
25+
replacer and space options.
26+
327
## 2.3.8
428

529
### Add

docs/.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.

docs/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+
}

docs/assets/hierarchy.js

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

docs/assets/highlight.css

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
:root {
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-hl-3: #0000FF;
9+
--dark-hl-3: #569CD6;
10+
--light-hl-4: #AF00DB;
11+
--dark-hl-4: #C586C0;
12+
--light-hl-5: #001080;
13+
--dark-hl-5: #9CDCFE;
14+
--light-hl-6: #008000;
15+
--dark-hl-6: #6A9955;
16+
--light-hl-7: #267F99;
17+
--dark-hl-7: #4EC9B0;
18+
--light-hl-8: #098658;
19+
--dark-hl-8: #B5CEA8;
20+
--light-hl-9: #000000;
21+
--dark-hl-9: #C8C8C8;
22+
--light-code-background: #FFFFFF;
23+
--dark-code-background: #1E1E1E;
24+
}
25+
26+
@media (prefers-color-scheme: light) { :root {
27+
--hl-0: var(--light-hl-0);
28+
--hl-1: var(--light-hl-1);
29+
--hl-2: var(--light-hl-2);
30+
--hl-3: var(--light-hl-3);
31+
--hl-4: var(--light-hl-4);
32+
--hl-5: var(--light-hl-5);
33+
--hl-6: var(--light-hl-6);
34+
--hl-7: var(--light-hl-7);
35+
--hl-8: var(--light-hl-8);
36+
--hl-9: var(--light-hl-9);
37+
--code-background: var(--light-code-background);
38+
} }
39+
40+
@media (prefers-color-scheme: dark) { :root {
41+
--hl-0: var(--dark-hl-0);
42+
--hl-1: var(--dark-hl-1);
43+
--hl-2: var(--dark-hl-2);
44+
--hl-3: var(--dark-hl-3);
45+
--hl-4: var(--dark-hl-4);
46+
--hl-5: var(--dark-hl-5);
47+
--hl-6: var(--dark-hl-6);
48+
--hl-7: var(--dark-hl-7);
49+
--hl-8: var(--dark-hl-8);
50+
--hl-9: var(--dark-hl-9);
51+
--code-background: var(--dark-code-background);
52+
} }
53+
54+
:root[data-theme='light'] {
55+
--hl-0: var(--light-hl-0);
56+
--hl-1: var(--light-hl-1);
57+
--hl-2: var(--light-hl-2);
58+
--hl-3: var(--light-hl-3);
59+
--hl-4: var(--light-hl-4);
60+
--hl-5: var(--light-hl-5);
61+
--hl-6: var(--light-hl-6);
62+
--hl-7: var(--light-hl-7);
63+
--hl-8: var(--light-hl-8);
64+
--hl-9: var(--light-hl-9);
65+
--code-background: var(--light-code-background);
66+
}
67+
68+
:root[data-theme='dark'] {
69+
--hl-0: var(--dark-hl-0);
70+
--hl-1: var(--dark-hl-1);
71+
--hl-2: var(--dark-hl-2);
72+
--hl-3: var(--dark-hl-3);
73+
--hl-4: var(--dark-hl-4);
74+
--hl-5: var(--dark-hl-5);
75+
--hl-6: var(--dark-hl-6);
76+
--hl-7: var(--dark-hl-7);
77+
--hl-8: var(--dark-hl-8);
78+
--hl-9: var(--dark-hl-9);
79+
--code-background: var(--dark-code-background);
80+
}
81+
82+
.hl-0 { color: var(--hl-0); }
83+
.hl-1 { color: var(--hl-1); }
84+
.hl-2 { color: var(--hl-2); }
85+
.hl-3 { color: var(--hl-3); }
86+
.hl-4 { color: var(--hl-4); }
87+
.hl-5 { color: var(--hl-5); }
88+
.hl-6 { color: var(--hl-6); }
89+
.hl-7 { color: var(--hl-7); }
90+
.hl-8 { color: var(--hl-8); }
91+
.hl-9 { color: var(--hl-9); }
92+
pre, code { background: var(--code-background); }

docs/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)