-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix material ui imports Use styled and sx instead of JSS Use FunctionComponent Fix namespace detail configuration Update Node and Yarn versions Update yarn in cli Fix webui docker build
- Loading branch information
amvanbaren
committed
Aug 8, 2023
1 parent
9b7befb
commit bc3fa5d
Showing
87 changed files
with
15,340 additions
and
11,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.{js,json,yml}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.yarn/** linguist-vendored | ||
/.yarn/releases/* binary | ||
/.yarn/plugins/**/* binary | ||
/.pnp.* binary linguist-generated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.6.1.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "ovsx", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"description": "Command line interface for Eclipse Open VSX", | ||
"keywords": [ | ||
"cli", | ||
|
@@ -18,7 +18,7 @@ | |
"bugs": "https://github.com/eclipse/openvsx/issues", | ||
"contributors": [ | ||
{ | ||
"name": "Miro Spönemann", | ||
"name": "Miro Sp�nemann", | ||
"email": "[email protected]", | ||
"url": "https://www.typefox.io" | ||
} | ||
|
@@ -29,9 +29,7 @@ | |
], | ||
"main": "lib/index", | ||
"types": "lib/index", | ||
"bin": { | ||
"ovsx": "lib/ovsx" | ||
}, | ||
"bin": "lib/ovsx", | ||
"engines": { | ||
"node": ">= 14" | ||
}, | ||
|
@@ -64,5 +62,6 @@ | |
"prepare": "yarn run clean && yarn run build", | ||
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version", | ||
"publish:latest": "yarn publish --tag latest" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.