ovsx 0.8.3 → 0.8.4
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/CHANGELOG.md +9 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
This change log covers only the command line interface (CLI) of Open VSX.
|
|
4
4
|
|
|
5
|
+
### v0.8.4 (Mar. 2023)
|
|
6
|
+
|
|
7
|
+
#### Dependencies
|
|
8
|
+
|
|
9
|
+
- Upgrade `follow-redirects` from `1.14.8` to `1.15.6` ([#869](https://github.com/eclipse/openvsx/pull/869))
|
|
10
|
+
- Upgrade `ip` from `2.0.0` to `2.0.1` ([#858](https://github.com/eclipse/openvsx/pull/858))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
5
14
|
### v0.8.3 (Aug. 2023)
|
|
6
15
|
|
|
7
16
|
#### Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ovsx",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"description": "Command line interface for Eclipse Open VSX",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"bugs": "https://github.com/eclipse/openvsx/issues",
|
|
19
19
|
"contributors": [
|
|
20
20
|
{
|
|
21
|
-
"name": "Miro
|
|
21
|
+
"name": "Miro Spönemann",
|
|
22
22
|
"email": "miro.spoenemann@typefox.io",
|
|
23
23
|
"url": "https://www.typefox.io"
|
|
24
24
|
}
|
|
@@ -60,8 +60,9 @@
|
|
|
60
60
|
"watch": "tsc -w -p ./tsconfig.json",
|
|
61
61
|
"lint": "eslint -c ./configs/eslintrc.json --ext .ts src",
|
|
62
62
|
"prepare": "yarn run clean && yarn run build",
|
|
63
|
-
"publish:next": "yarn publish --
|
|
64
|
-
"publish:latest": "yarn publish --tag latest"
|
|
63
|
+
"publish:next": "yarn npm publish --tag next",
|
|
64
|
+
"publish:latest": "yarn npm publish --tag latest",
|
|
65
|
+
"load-extensions": "node scripts/load-test-extensions.js"
|
|
65
66
|
},
|
|
66
|
-
"packageManager": "yarn@
|
|
67
|
+
"packageManager": "yarn@4.1.0"
|
|
67
68
|
}
|