Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
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 d6b253f
Show file tree
Hide file tree
Showing 87 changed files with 15,338 additions and 11,179 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 17
- name: Install Yarn
run: npm install --global yarn
run: |
corepack enable
corepack prepare yarn@stable --activate
- uses: actions/checkout@v2
- name: Set Image Version
run: echo "IMAGE_VERSION=${GITHUB_SHA:0:7}" >> $GITHUB_ENV
Expand Down
10 changes: 10 additions & 0 deletions cli/.editorconfig
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
4 changes: 4 additions & 0 deletions cli/.gitattributes
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
7 changes: 7 additions & 0 deletions cli/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
/lib/
node_modules/
yarn-error.log
Expand Down
874 changes: 874 additions & 0 deletions cli/.yarn/releases/yarn-3.6.1.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions cli/.yarnrc.yml
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
8 changes: 8 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This change log covers only the command line interface (CLI) of Open VSX.

### v0.8.3 (Aug. 2023)

#### Dependencies

- Upgrade `yarn` from `1.22.19` to `3.6.1` ([#793](https://github.com/eclipse/openvsx/pull/793))

---

### v0.8.2 (July 2023)

#### Dependencies
Expand Down
11 changes: 5 additions & 6 deletions cli/package.json
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",
Expand All @@ -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"
}
Expand All @@ -29,9 +29,7 @@
],
"main": "lib/index",
"types": "lib/index",
"bin": {
"ovsx": "lib/ovsx"
},
"bin": "lib/ovsx",
"engines": {
"node": ">= 14"
},
Expand Down Expand Up @@ -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]"
}
Loading

0 comments on commit d6b253f

Please sign in to comment.