@monowind/ascii 0.1.10 → 0.2.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/dist/cdn.js +1 -1
- package/dist/cdn.js.map +1 -1
- package/package.json +3 -3
- package/src/styles.css +0 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monowind/ascii",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "FIGlet/TOIlet ascii-art banner text for monowind: the <mono-ascii> element and a font library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ascii-art",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"@types/node": "^26.4.0",
|
|
46
46
|
"figlet": "^1.11.4",
|
|
47
47
|
"happy-dom": "^20.12.0",
|
|
48
|
-
"monowind": "^0.
|
|
48
|
+
"monowind": "^0.2.0",
|
|
49
49
|
"typescript": "^7.0.2",
|
|
50
50
|
"vite": "^8.2.2",
|
|
51
51
|
"vitest": "^4.1.11"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"monowind": "^0.
|
|
54
|
+
"monowind": "^0.2.0"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"build": "node scripts/generate-fonts.mjs && vite build && vite build -c vite.cdn.config.ts && tsc -p tsconfig.build.json && node -e \"fs.readdirSync('dist/fonts').filter(f=>f.endsWith('.map')).forEach(f=>fs.rmSync('dist/fonts/'+f))\"",
|
package/src/styles.css
CHANGED
|
@@ -13,27 +13,4 @@
|
|
|
13
13
|
mono-ascii {
|
|
14
14
|
display: block;
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
/* ANSI-16 theme tokens: what SGR-colored fonts and `effect` filters
|
|
18
|
-
* resolve against, so a font's "red" follows the theme. Defaults
|
|
19
|
-
* follow the VS Code terminal palette; the themes initiative (and
|
|
20
|
-
* any consumer) overrides them. */
|
|
21
|
-
mono-wind {
|
|
22
|
-
--mw-ansi-black: #000000;
|
|
23
|
-
--mw-ansi-red: #cd3131;
|
|
24
|
-
--mw-ansi-green: #0dbc79;
|
|
25
|
-
--mw-ansi-yellow: #e5e510;
|
|
26
|
-
--mw-ansi-blue: #2472c8;
|
|
27
|
-
--mw-ansi-magenta: #bc3fbc;
|
|
28
|
-
--mw-ansi-cyan: #11a8cd;
|
|
29
|
-
--mw-ansi-white: #e5e5e5;
|
|
30
|
-
--mw-ansi-bright-black: #666666;
|
|
31
|
-
--mw-ansi-bright-red: #f14c4c;
|
|
32
|
-
--mw-ansi-bright-green: #23d18b;
|
|
33
|
-
--mw-ansi-bright-yellow: #f5f543;
|
|
34
|
-
--mw-ansi-bright-blue: #3b8eea;
|
|
35
|
-
--mw-ansi-bright-magenta: #d670d6;
|
|
36
|
-
--mw-ansi-bright-cyan: #29b8db;
|
|
37
|
-
--mw-ansi-bright-white: #ffffff;
|
|
38
|
-
}
|
|
39
16
|
}
|