ovsx 0.8.1 → 0.8.3
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 +18 -0
- package/package.json +65 -66
- package/src/ovsx +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
This change log covers only the command line interface (CLI) of Open VSX.
|
|
4
4
|
|
|
5
|
+
### v0.8.3 (Aug. 2023)
|
|
6
|
+
|
|
7
|
+
#### Dependencies
|
|
8
|
+
|
|
9
|
+
- Upgrade `yarn` from `1.22.19` to `3.6.1` ([#793](https://github.com/eclipse/openvsx/pull/793))
|
|
10
|
+
- Upgrade `word-wrap` from `1.2.3` to `1.2.4` ([#787](https://github.com/eclipse/openvsx/pull/787))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
### v0.8.2 (July 2023)
|
|
15
|
+
|
|
16
|
+
#### Dependencies
|
|
17
|
+
|
|
18
|
+
- Upgrade `vcse` from `2.15.0` to `2.19.0` ([#775](https://github.com/eclipse/openvsx/pull/775))
|
|
19
|
+
- Upgrade `semver` from `5.7.1` to `7.5.2` ([#763](https://github.com/eclipse/openvsx/pull/763))
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
5
23
|
### v0.8.1 (May. 2023)
|
|
6
24
|
|
|
7
25
|
#### Dependencies
|
package/package.json
CHANGED
|
@@ -1,68 +1,67 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
],
|
|
26
|
-
"files": [
|
|
27
|
-
"lib",
|
|
28
|
-
"src"
|
|
29
|
-
],
|
|
30
|
-
"main": "lib/index",
|
|
31
|
-
"types": "lib/index",
|
|
32
|
-
"bin": {
|
|
33
|
-
"ovsx": "lib/ovsx"
|
|
34
|
-
},
|
|
35
|
-
"engines": {
|
|
36
|
-
"node": ">= 14"
|
|
37
|
-
},
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@vscode/vsce": "^2.15.0",
|
|
40
|
-
"commander": "^6.1.0",
|
|
41
|
-
"follow-redirects": "^1.14.6",
|
|
42
|
-
"is-ci": "^2.0.0",
|
|
43
|
-
"leven": "^3.1.0",
|
|
44
|
-
"semver": "^5.1.0",
|
|
45
|
-
"tmp": "^0.2.1"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@types/follow-redirects": "^1.13.1",
|
|
49
|
-
"@types/is-ci": "^2.0.0",
|
|
50
|
-
"@types/node": "^10.17.60",
|
|
51
|
-
"@types/semver": "^7.3.9",
|
|
52
|
-
"@types/tmp": "^0.1.0",
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
54
|
-
"@typescript-eslint/parser": "^5.44.0",
|
|
55
|
-
"eslint": "^8.28.0",
|
|
56
|
-
"rimraf": "^3.0.2",
|
|
57
|
-
"typescript": "3.8.3"
|
|
58
|
-
},
|
|
59
|
-
"scripts": {
|
|
60
|
-
"clean": "rimraf lib",
|
|
61
|
-
"build": "tsc -p ./tsconfig.json && yarn run lint && cp src/ovsx lib/ovsx",
|
|
62
|
-
"watch": "tsc -w -p ./tsconfig.json",
|
|
63
|
-
"lint": "eslint -c ./configs/eslintrc.json --ext .ts src",
|
|
64
|
-
"prepare": "yarn run clean && yarn run build",
|
|
65
|
-
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version",
|
|
66
|
-
"publish:latest": "yarn publish --tag latest"
|
|
2
|
+
"name": "ovsx",
|
|
3
|
+
"version": "0.8.3",
|
|
4
|
+
"description": "Command line interface for Eclipse Open VSX",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"vscode",
|
|
8
|
+
"extensions",
|
|
9
|
+
"publish"
|
|
10
|
+
],
|
|
11
|
+
"license": "EPL-2.0",
|
|
12
|
+
"homepage": "https://open-vsx.org",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/eclipse/openvsx.git",
|
|
16
|
+
"directory": "cli"
|
|
17
|
+
},
|
|
18
|
+
"bugs": "https://github.com/eclipse/openvsx/issues",
|
|
19
|
+
"contributors": [
|
|
20
|
+
{
|
|
21
|
+
"name": "Miro Sp�nemann",
|
|
22
|
+
"email": "miro.spoenemann@typefox.io",
|
|
23
|
+
"url": "https://www.typefox.io"
|
|
67
24
|
}
|
|
68
|
-
|
|
25
|
+
],
|
|
26
|
+
"files": [
|
|
27
|
+
"lib",
|
|
28
|
+
"src"
|
|
29
|
+
],
|
|
30
|
+
"main": "lib/index",
|
|
31
|
+
"types": "lib/index",
|
|
32
|
+
"bin": "lib/ovsx",
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">= 14"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@vscode/vsce": "^2.19.0",
|
|
38
|
+
"commander": "^6.1.0",
|
|
39
|
+
"follow-redirects": "^1.14.6",
|
|
40
|
+
"is-ci": "^2.0.0",
|
|
41
|
+
"leven": "^3.1.0",
|
|
42
|
+
"semver": "^7.5.2",
|
|
43
|
+
"tmp": "^0.2.1"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/follow-redirects": "^1.13.1",
|
|
47
|
+
"@types/is-ci": "^2.0.0",
|
|
48
|
+
"@types/node": "^10.17.60",
|
|
49
|
+
"@types/semver": "^7.3.9",
|
|
50
|
+
"@types/tmp": "^0.1.0",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
52
|
+
"@typescript-eslint/parser": "^5.44.0",
|
|
53
|
+
"eslint": "^8.28.0",
|
|
54
|
+
"rimraf": "^3.0.2",
|
|
55
|
+
"typescript": "3.8.3"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"clean": "rimraf lib",
|
|
59
|
+
"build": "tsc -p ./tsconfig.json && yarn run lint && cp src/ovsx lib/ovsx",
|
|
60
|
+
"watch": "tsc -w -p ./tsconfig.json",
|
|
61
|
+
"lint": "eslint -c ./configs/eslintrc.json --ext .ts src",
|
|
62
|
+
"prepare": "yarn run clean && yarn run build",
|
|
63
|
+
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version",
|
|
64
|
+
"publish:latest": "yarn publish --tag latest"
|
|
65
|
+
},
|
|
66
|
+
"packageManager": "yarn@3.6.1"
|
|
67
|
+
}
|
package/src/ovsx
CHANGED
|
File without changes
|