material-icon-theme 5.14.1 → 5.16.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/README.md +22 -17
- package/dist/material-icons.json +1 -1
- package/dist/module/index.cjs +1 -1
- package/dist/types/core/icons/fileIcons.d.ts.map +1 -1
- package/dist/types/core/icons/folderIcons.d.ts.map +1 -1
- package/dist/types/core/icons/languageIcons.d.ts.map +1 -1
- package/icons/citation.svg +1 -0
- package/icons/hosts.svg +1 -0
- package/icons/hosts_light.svg +1 -0
- package/icons/keystatic.svg +1 -0
- package/icons/lyric.svg +1 -0
- package/icons/markdoc-config.svg +1 -0
- package/icons/markdoc.svg +1 -0
- package/icons/pm2-ecosystem.svg +1 -0
- package/icons/subtitles.svg +1 -0
- package/package.json +10 -3
- /package/{LICENSE.md → LICENSE} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#78909c" d="m14 10-4 3.5L6 10H4v12h4v-6l2 2 2-2v6h4V10Z"/><rect width="6" height="16" x="22" y="8" fill="#ffb300" rx=".5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32"><defs><linearGradient id="a" x1="30.625" x2="18.735" y1="16" y2="16" gradientTransform="matrix(1 0 0 -1 0 32)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#536dfe"/><stop offset="1" stop-color="#42a5f5"/></linearGradient><linearGradient id="b" x1="14.849" x2="12.074" y1="17.238" y2="22.863" gradientTransform="matrix(1 0 0 -1 0 32)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#6200ea"/><stop offset="1" stop-color="#a0f"/></linearGradient><linearGradient id="c" x1="14.412" x2="10.362" y1="14.78" y2="4.655" gradientTransform="matrix(1 0 0 -1 0 32)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#9c27b0"/><stop offset="1" stop-color="#ec407a"/></linearGradient></defs><path fill="url(#a)" d="M21.23 18.477a4.26 4.26 0 0 0 0-4.954L18 9l1.88-1.88 4.447 6.662a3.98 3.98 0 0 1 0 4.436L19.88 24.88 18 23Zm7.93-5.25L23 4l-1.678 1.678 4.67 6.993a5.98 5.98 0 0 1 0 6.658l-4.67 6.993L23 28l6.16-9.226a4.995 4.995 0 0 0 0-5.548"/><path fill="url(#b)" d="m3.2 12 2.4-4H10a4 4 0 0 0 4-4h4.43l-2.642 4.527A7.02 7.02 0 0 1 9.742 12Zm17.545-8-3.23 5.535A9.03 9.03 0 0 1 9.743 14H2v2h14l7-12Z"/><path fill="url(#c)" d="M18.43 28H14a4 4 0 0 0-4-4H5.6l-2.4-4h6.542a7.02 7.02 0 0 1 6.047 3.473Zm-.913-5.535L20.745 28H23l-7-12H2v2h7.742a9.03 9.03 0 0 1 7.775 4.465"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="#ff9800" viewBox="0 0 32 32"><path d="M4.625 26q-1.083 0-1.854-.735C2 24.53 2 24.187 2 23.5V8.49q0-1.032.771-1.76A2.6 2.6 0 0 1 4.625 6h22.75q1.083 0 1.854.735C30 7.47 30 7.813 30 8.5v15.01q0 1.032-.771 1.76a2.6 2.6 0 0 1-1.854.73zM6 22h13v-4H6zm15 0h5v-4h-5zM6 16h5v-4H6zm7 0h13v-4H13z"/></svg>
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "material-icon-theme",
|
|
3
3
|
"displayName": "Material Icon Theme",
|
|
4
4
|
"description": "Material Design Icons for Visual Studio Code",
|
|
5
|
-
"version": "5.
|
|
5
|
+
"version": "5.16.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"precompile": "rimraf dist && bun run verify",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"generateJson": "bun ./src/scripts/icons/generateJson.ts > ./dist/material-icons.json",
|
|
18
18
|
"generateClones": "bun ./src/scripts/icons/generateClones.ts",
|
|
19
19
|
"lint": "biome check",
|
|
20
|
+
"markdownlint": "markdownlint '**/*.md'",
|
|
20
21
|
"format": "biome format --write ./src",
|
|
21
22
|
"preversion": "bun run contributors && bun run preview && bun run svgo && git add images/*.png icons/*.svg",
|
|
22
23
|
"preview": "bun ./src/scripts/preview/run.ts",
|
|
@@ -25,7 +26,8 @@
|
|
|
25
26
|
"vscode:prepublish": "bun run lint && bun run build",
|
|
26
27
|
"verify": "sheriff verify",
|
|
27
28
|
"prepublishOnly": "bun ./src/scripts/module/prepare.ts",
|
|
28
|
-
"postpublish": "git checkout package.json && git checkout README.md"
|
|
29
|
+
"postpublish": "git checkout package.json && git checkout README.md",
|
|
30
|
+
"prepare": "husky"
|
|
29
31
|
},
|
|
30
32
|
"publisher": "PKief",
|
|
31
33
|
"author": {
|
|
@@ -369,6 +371,7 @@
|
|
|
369
371
|
},
|
|
370
372
|
"devDependencies": {
|
|
371
373
|
"@biomejs/biome": "1.9.4",
|
|
374
|
+
"@commitlint/config-conventional": "^19.5.0",
|
|
372
375
|
"@softarc/sheriff-core": "^0.18.0",
|
|
373
376
|
"@types/chroma-js": "^2.4.4",
|
|
374
377
|
"@types/puppeteer": "^7.0.0",
|
|
@@ -376,10 +379,14 @@
|
|
|
376
379
|
"axios": "^1.7.2",
|
|
377
380
|
"bun-types": "^1.1.20",
|
|
378
381
|
"changelogen": "^0.5.7",
|
|
382
|
+
"commitlint": "^19.5.0",
|
|
379
383
|
"esbuild": "^0.24.0",
|
|
384
|
+
"husky": "^9.1.6",
|
|
385
|
+
"lint-staged": "^15.2.10",
|
|
386
|
+
"markdownlint-cli": "^0.43.0",
|
|
380
387
|
"puppeteer": "^23.0.0",
|
|
381
388
|
"rimraf": "^6.0.1",
|
|
382
|
-
"svg-color-linter": "^
|
|
389
|
+
"svg-color-linter": "^3.0.0",
|
|
383
390
|
"svgo": "^3.0.0",
|
|
384
391
|
"typescript": "^5.5.4"
|
|
385
392
|
},
|
/package/{LICENSE.md → LICENSE}
RENAMED
|
File without changes
|