ovsx 0.9.4 → 0.9.5

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  This change log covers only the command line interface (CLI) of Open VSX.
4
4
 
5
+ ### v0.9.5 (Sep. 2024)
6
+
7
+ #### Breaking Changes
8
+
9
+ - The minimum version of Node.js required is now `20` because of the newer `@vscode/vsce`
10
+
11
+ #### Dependencies
12
+
13
+ - Upgrade `@vscode/vsce` from `2.25.0` to `3.1.0` ([#994](https://github.com/eclipse/openvsx/pull/994))
14
+ - Upgrade `commander` from `6.1.0` to `6.2.1` ([#994](https://github.com/eclipse/openvsx/pull/994))
15
+ - Upgrade `tmp` from `0.2.1` to `0.2.3` ([#994](https://github.com/eclipse/openvsx/pull/994))
16
+
17
+ ---
18
+
5
19
  ### v0.9.4 (Sep. 2024)
6
20
 
7
21
  #### Dependencies
package/lib/login.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export default function doLogin(): void;
2
+ //# sourceMappingURL=login.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"login.d.ts","sourceRoot":"","sources":["../src/login.ts"],"names":[],"mappings":"AAWA,MAAM,CAAC,OAAO,UAAU,OAAO,SAE9B"}
package/lib/login.js ADDED
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ function doLogin() {
4
+ }
5
+ exports.default = doLogin;
6
+ //# sourceMappingURL=login.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"login.js","sourceRoot":"","sources":["../src/login.ts"],"names":[],"mappings":";;AAWA,SAAwB,OAAO;AAE/B,CAAC;AAFD,0BAEC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ovsx",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Command line interface for Eclipse Open VSX",
5
5
  "keywords": [
6
6
  "cli",
@@ -31,23 +31,23 @@
31
31
  "types": "lib/index",
32
32
  "bin": "lib/ovsx",
33
33
  "engines": {
34
- "node": ">= 16"
34
+ "node": ">= 20"
35
35
  },
36
36
  "dependencies": {
37
- "@vscode/vsce": "^2.25.0",
38
- "commander": "^6.1.0",
37
+ "@vscode/vsce": "^3.1.0",
38
+ "commander": "^6.2.1",
39
39
  "follow-redirects": "^1.14.6",
40
40
  "is-ci": "^2.0.0",
41
41
  "leven": "^3.1.0",
42
42
  "semver": "^7.6.0",
43
- "tmp": "^0.2.1"
43
+ "tmp": "^0.2.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/follow-redirects": "^1.13.1",
47
47
  "@types/is-ci": "^2.0.0",
48
- "@types/node": "^16.11.7",
48
+ "@types/node": "^20.14.8",
49
49
  "@types/semver": "^7.5.8",
50
- "@types/tmp": "^0.1.0",
50
+ "@types/tmp": "^0.2.2",
51
51
  "@typescript-eslint/eslint-plugin": "^5.44.0",
52
52
  "@typescript-eslint/parser": "^5.44.0",
53
53
  "eslint": "^8.28.0",
package/src/login.ts ADDED
@@ -0,0 +1,14 @@
1
+ /********************************************************************************
2
+ * Copyright (c) 2024 Precies. Software and others
3
+ *
4
+ * This program and the accompanying materials are made available under the
5
+ * terms of the Eclipse Public License v. 2.0 which is available at
6
+ * http://www.eclipse.org/legal/epl-2.0.
7
+ *
8
+ * SPDX-License-Identifier: EPL-2.0
9
+ ********************************************************************************/
10
+ import { } from '@vscode/vsce';
11
+
12
+ export default function doLogin() {
13
+
14
+ }