Skip to content

Commit b0a5861

Browse files
committed
Release 5.5.1
1 parent 04e81ac commit b0a5861

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
44

55

6+
#### [v5.5.1](https://github.com/material-extensions/vscode-material-icon-theme/compare/v5.5.0...v5.5.1)
7+
8+
> July 15, 2024
9+
10+
- Remove lodash as dependency [`#2422`](https://github.com/material-extensions/vscode-material-icon-theme/pull/2422)
11+
- Update tsconfig [`412da52e`](https://github.com/material-extensions/vscode-material-icon-theme/commit/412da52e)
12+
613
#### [v5.5.0](https://github.com/material-extensions/vscode-material-icon-theme/compare/v5.4.2...v5.5.0)
714

815
> July 15, 2024

images/fileIcons.png

-2 Bytes
Loading

images/folderIcons.png

0 Bytes
Loading

package.json

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "material-icon-theme",
33
"displayName": "Material Icon Theme",
44
"description": "Material Design Icons for Visual Studio Code",
5-
"version": "5.5.0",
5+
"version": "5.5.1",
66
"scripts": {
77
"precompile": "rimraf dist && bun run verify",
88
"compile": "tsc -p ./",
@@ -54,16 +54,29 @@
5454
"color": "#1e1e1e",
5555
"theme": "dark"
5656
},
57-
"categories": ["Themes"],
58-
"keywords": ["icons", "theme", "material", "icon-theme", "customization"],
59-
"extensionKind": ["ui", "workspace"],
57+
"categories": [
58+
"Themes"
59+
],
60+
"keywords": [
61+
"icons",
62+
"theme",
63+
"material",
64+
"icon-theme",
65+
"customization"
66+
],
67+
"extensionKind": [
68+
"ui",
69+
"workspace"
70+
],
6071
"capabilities": {
6172
"untrustedWorkspaces": {
6273
"supported": true
6374
},
6475
"virtualWorkspaces": true
6576
},
66-
"activationEvents": ["onStartupFinished"],
77+
"activationEvents": [
78+
"onStartupFinished"
79+
],
6780
"main": "./dist/extension/desktop/extension.cjs",
6881
"browser": "./dist/extension/web/extension.cjs",
6982
"module": "./dist/module/index.cjs",
@@ -266,7 +279,11 @@
266279
"%configuration.folders.theme.classic%",
267280
"%configuration.folders.theme.none%"
268281
],
269-
"enum": ["specific", "classic", "none"]
282+
"enum": [
283+
"specific",
284+
"classic",
285+
"none"
286+
]
270287
},
271288
"material-icon-theme.folders.color": {
272289
"type": "string",

0 commit comments

Comments
 (0)