@eclipse-glsp/cli 2.3.0-next.172 → 2.3.0
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/lib/commands/check-header.js +10 -20
- package/lib/commands/check-header.js.map +1 -1
- package/lib/commands/checkout.d.ts +27 -0
- package/lib/commands/checkout.d.ts.map +1 -0
- package/lib/commands/checkout.js +41 -0
- package/lib/commands/checkout.js.map +1 -0
- package/lib/commands/coverage-report.js +11 -21
- package/lib/commands/coverage-report.js.map +1 -1
- package/lib/commands/generate-index.js +20 -30
- package/lib/commands/generate-index.js.map +1 -1
- package/lib/commands/release/common.js +21 -31
- package/lib/commands/release/common.js.map +1 -1
- package/lib/commands/release/release-client.js +2 -1
- package/lib/commands/release/release-client.js.map +1 -1
- package/lib/commands/release/release-eclipse-integration.js +2 -1
- package/lib/commands/release/release-eclipse-integration.js.map +1 -1
- package/lib/commands/release/release-java-server.js +2 -1
- package/lib/commands/release/release-java-server.js.map +1 -1
- package/lib/commands/release/release-server-node.js +2 -1
- package/lib/commands/release/release-server-node.js.map +1 -1
- package/lib/commands/release/release-theia-integration.js +2 -1
- package/lib/commands/release/release-theia-integration.js.map +1 -1
- package/lib/commands/release/release-vscode-integration.js +2 -1
- package/lib/commands/release/release-vscode-integration.js.map +1 -1
- package/lib/commands/release/release.js +9 -19
- package/lib/commands/release/release.js.map +1 -1
- package/lib/commands/repo/clone.d.ts +28 -0
- package/lib/commands/repo/clone.d.ts.map +1 -0
- package/lib/commands/repo/clone.js +113 -0
- package/lib/commands/repo/clone.js.map +1 -0
- package/lib/commands/repo/clone.spec.d.ts +17 -0
- package/lib/commands/repo/clone.spec.d.ts.map +1 -0
- package/lib/commands/repo/clone.spec.js +126 -0
- package/lib/commands/repo/clone.spec.js.map +1 -0
- package/lib/commands/repo/common.d.ts +23 -0
- package/lib/commands/repo/common.d.ts.map +1 -0
- package/lib/commands/repo/common.js +18 -0
- package/lib/commands/repo/common.js.map +1 -0
- package/lib/commands/repo/config.d.ts +18 -0
- package/lib/commands/repo/config.d.ts.map +1 -0
- package/lib/commands/repo/config.js +28 -0
- package/lib/commands/repo/config.js.map +1 -0
- package/lib/commands/repo/repo.d.ts +17 -0
- package/lib/commands/repo/repo.d.ts.map +1 -0
- package/lib/commands/repo/repo.js +25 -0
- package/lib/commands/repo/repo.js.map +1 -0
- package/lib/commands/update-next.js +9 -19
- package/lib/commands/update-next.js.map +1 -1
- package/lib/common/glsp-component.d.ts +27 -0
- package/lib/common/glsp-component.d.ts.map +1 -0
- package/lib/common/glsp-component.js +13 -0
- package/lib/common/glsp-component.js.map +1 -0
- package/lib/common/glsp-repo.d.ts +44 -0
- package/lib/common/glsp-repo.d.ts.map +1 -0
- package/lib/common/glsp-repo.js +135 -0
- package/lib/common/glsp-repo.js.map +1 -0
- package/lib/common/glsp-repo.spec.d.ts +17 -0
- package/lib/common/glsp-repo.spec.d.ts.map +1 -0
- package/lib/common/glsp-repo.spec.js +130 -0
- package/lib/common/glsp-repo.spec.js.map +1 -0
- package/lib/foo.spec.d.ts +17 -0
- package/lib/foo.spec.d.ts.map +1 -0
- package/lib/foo.spec.js +23 -0
- package/lib/foo.spec.js.map +1 -0
- package/lib/index.d.ts +18 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +18 -0
- package/lib/index.js.map +1 -0
- package/lib/util/command-util.js +5 -5
- package/lib/util/command-util.js.map +1 -1
- package/lib/util/git-util.js +12 -11
- package/lib/util/git-util.js.map +1 -1
- package/lib/util/logger.js +2 -2
- package/lib/util/logger.js.map +1 -1
- package/lib/util/test-util.spec.d.ts +2 -0
- package/lib/util/test-util.spec.d.ts.map +1 -0
- package/lib/util/test-util.spec.js +44 -0
- package/lib/util/test-util.spec.js.map +1 -0
- package/lib/util/validation-util.js +12 -21
- package/lib/util/validation-util.js.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/********************************************************************************
|
|
3
|
+
* Copyright (c) 2024 EclipseSource and others.
|
|
4
|
+
*
|
|
5
|
+
* This program and the accompanying materials are made available under the
|
|
6
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
*
|
|
9
|
+
* This Source Code may also be made available under the following Secondary
|
|
10
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
* with the GNU Classpath Exception which is available at
|
|
13
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
*
|
|
15
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
********************************************************************************/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.ConfigCommand = void 0;
|
|
19
|
+
exports.showConfig = showConfig;
|
|
20
|
+
const command_util_1 = require("../../util/command-util");
|
|
21
|
+
exports.ConfigCommand = (0, command_util_1.baseCommand)() //
|
|
22
|
+
.name('config')
|
|
23
|
+
.description('Show the current repository configuration')
|
|
24
|
+
.action(showConfig);
|
|
25
|
+
async function showConfig() {
|
|
26
|
+
console.log('Showing the current repository configuration...');
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/commands/repo/config.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF;;;AASlF,gCAEC;AATD,0DAAsD;AAEzC,QAAA,aAAa,GAAG,IAAA,0BAAW,GAAE,CAAC,EAAE;KACxC,IAAI,CAAC,QAAQ,CAAC;KACd,WAAW,CAAC,2CAA2C,CAAC;KACxD,MAAM,CAAC,UAAU,CAAC,CAAC;AAEjB,KAAK,UAAU,UAAU;IAC5B,OAAO,CAAC,GAAG,CAAC,iDAAiD,CAAC,CAAC;AACnE,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (c) 2024 EclipseSource 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
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
export declare const RepoCommand: import("commander").Command;
|
|
17
|
+
//# sourceMappingURL=repo.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repo.d.ts","sourceRoot":"","sources":["../../../src/commands/repo/repo.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAKlF,eAAO,MAAM,WAAW,6BAGK,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/********************************************************************************
|
|
3
|
+
* Copyright (c) 2024 EclipseSource and others.
|
|
4
|
+
*
|
|
5
|
+
* This program and the accompanying materials are made available under the
|
|
6
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
*
|
|
9
|
+
* This Source Code may also be made available under the following Secondary
|
|
10
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
* with the GNU Classpath Exception which is available at
|
|
13
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
*
|
|
15
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
********************************************************************************/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.RepoCommand = void 0;
|
|
19
|
+
const command_util_1 = require("../../util/command-util");
|
|
20
|
+
const clone_1 = require("./clone");
|
|
21
|
+
exports.RepoCommand = (0, command_util_1.baseCommand)() //
|
|
22
|
+
.name('repo')
|
|
23
|
+
.description('Manage GLSP repositories')
|
|
24
|
+
.addCommand(clone_1.CloneCommand);
|
|
25
|
+
//# sourceMappingURL=repo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repo.js","sourceRoot":"","sources":["../../../src/commands/repo/repo.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF;;;AAElF,0DAAsD;AACtD,mCAAuC;AAE1B,QAAA,WAAW,GAAG,IAAA,0BAAW,GAAE,CAAC,EAAE;KACtC,IAAI,CAAC,MAAM,CAAC;KACZ,WAAW,CAAC,0BAA0B,CAAC;KACvC,UAAU,CAAC,oBAAY,CAAC,CAAC"}
|
|
@@ -30,29 +30,18 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
30
30
|
}) : function(o, v) {
|
|
31
31
|
o["default"] = v;
|
|
32
32
|
});
|
|
33
|
-
var __importStar = (this && this.__importStar) ||
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
return ownKeys(o);
|
|
41
|
-
};
|
|
42
|
-
return function (mod) {
|
|
43
|
-
if (mod && mod.__esModule) return mod;
|
|
44
|
-
var result = {};
|
|
45
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
46
|
-
__setModuleDefault(result, mod);
|
|
47
|
-
return result;
|
|
48
|
-
};
|
|
49
|
-
})();
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
39
|
+
};
|
|
50
40
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
51
41
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
52
42
|
};
|
|
53
43
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54
|
-
exports.UpdateNextCommand = void 0;
|
|
55
|
-
exports.updateNext = updateNext;
|
|
44
|
+
exports.updateNext = exports.UpdateNextCommand = void 0;
|
|
56
45
|
const fs = __importStar(require("fs"));
|
|
57
46
|
const glob_1 = require("glob");
|
|
58
47
|
const jq = __importStar(require("node-jq"));
|
|
@@ -99,6 +88,7 @@ async function updateNext(rootDir, options) {
|
|
|
99
88
|
shelljs_1.default.exec('yarn');
|
|
100
89
|
logger_1.LOGGER.info('Upgrade successfully completed');
|
|
101
90
|
}
|
|
91
|
+
exports.updateNext = updateNext;
|
|
102
92
|
async function getWorkspacePackages(rootDir) {
|
|
103
93
|
const rootPackage = path.join(rootDir, 'package.json');
|
|
104
94
|
const packages = [rootPackage];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-next.js","sourceRoot":"","sources":["../../src/commands/update-next.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF
|
|
1
|
+
{"version":3,"file":"update-next.js","sourceRoot":"","sources":["../../src/commands/update-next.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElF,uCAAyB;AACzB,+BAA4B;AAC5B,4CAA8B;AAC9B,2CAA6B;AAC7B,sDAAyB;AACzB,uDAAmE;AACnE,+CAAyD;AACzD,2CAAyD;AACzD,6DAA+D;AAElD,QAAA,iBAAiB,GAAG,IAAA,0BAAW,GAAE;KACzC,IAAI,CAAC,YAAY,CAAC;KAClB,KAAK,CAAC,GAAG,CAAC;KACV,WAAW,CAAC,uEAAuE,CAAC;KACpF,QAAQ,CAAC,WAAW,EAAE,qBAAqB,EAAE,sCAAoB,EAAE,OAAO,CAAC,GAAG,EAAE,CAAC;KACjF,MAAM,CAAC,eAAe,EAAE,mCAAmC,EAAE,KAAK,CAAC;KACnE,MAAM,CAAC,UAAU,CAAC,CAAC;AAEjB,KAAK,UAAU,UAAU,CAAC,OAAe,EAAE,OAA6B;IAC3E,IAAA,wBAAe,EAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IACjC,IAAA,6BAAc,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;IAE9C,MAAM,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC;IACvD,IAAI,IAAA,gCAAqB,EAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC;QACvD,eAAM,CAAC,IAAI,CAAC,sGAAsG,CAAC,CAAC;QACpH,OAAO;IACX,CAAC;IAED,IAAA,6BAAc,EAAC,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;IAE/C,eAAM,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC;IAC9C,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAChC,MAAM,QAAQ,GAAG,MAAM,oBAAoB,CAAC,OAAO,CAAC,CAAC;IACrD,eAAM,CAAC,KAAK,CAAC,YAAY,QAAQ,CAAC,MAAM,iCAAiC,EAAE,QAAQ,CAAC,CAAC;IACrF,MAAM,WAAW,GAAG,MAAM,cAAc,CAAC,QAAQ,CAAC,CAAC;IACnD,IAAI,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACxC,eAAM,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC;QAC1C,OAAO;IACX,CAAC;IACD,eAAM,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;IAChD,MAAM,WAAW,GAAG,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC;IACjF,eAAM,CAAC,KAAK,CAAC,wCAAwC,EAAE,WAAW,CAAC,CAAC;IACpE,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,EAAE,WAAW,EAAE,EAAE,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC;IAChI,eAAM,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC;IACrC,iBAAE,CAAC,IAAI,CAAC,+BAA+B,CAAC,CAAC;IACzC,eAAM,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;IACvC,iBAAE,CAAC,IAAI,CAAC,mCAAmC,CAAC,CAAC;IAC7C,eAAM,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC;IAC5C,iBAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAChB,eAAM,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC;AAClD,CAAC;AAhCD,gCAgCC;AAED,KAAK,UAAU,oBAAoB,CAAC,OAAe;IAC/C,MAAM,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC;IACvD,MAAM,QAAQ,GAAG,CAAC,WAAW,CAAC,CAAC;IAC/B,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,EAAE,CAAC;QAC9B,eAAM,CAAC,KAAK,CAAC,yCAAyC,CAAC,CAAC;QACxD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACpB,CAAC;IACD,MAAM,UAAU,GAAG,MAAM,kBAAkB,CAAC,WAAW,CAAC,CAAC;IACzD,IAAI,UAAU,EAAE,CAAC;QACb,UAAU;aACL,GAAG,CAAC,SAAS,CAAC,EAAE,CAAC,GAAG,SAAS,kBAAkB,CAAC;aAChD,OAAO,CAAC,OAAO,CAAC,EAAE;YACf,WAAI,CAAC,IAAI,CAAC,OAAO,EAAE;gBACf,GAAG,EAAE,OAAO;gBACZ,MAAM,EAAE,CAAC,oBAAoB,CAAC;aACjC,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;QAC9E,CAAC,CAAC,CAAC;IACX,CAAC;IAED,OAAO,CAAC,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC;AAClC,CAAC;AAED,KAAK,UAAU,cAAc,CAAC,QAAkB;IAC5C,IAAI,YAAY,GAAa,EAAE,CAAC;IAChC,KAAK,MAAM,GAAG,IAAI,QAAQ,EAAE,CAAC;QACzB,MAAM,IAAI,GAAG,MAAM,EAAE,CAAC,GAAG,CACrB,2GAA2G,EAC3G,GAAG,EACH;YACI,MAAM,EAAE,MAAM;SACjB,CACJ,CAAC;QACF,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;YACtB,YAAY,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;QAC/B,CAAC;IACL,CAAC;IACD,YAAY,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC;IAC1C,eAAM,CAAC,KAAK,CAAC,SAAS,YAAY,CAAC,MAAM,sBAAsB,EAAE,YAAY,CAAC,CAAC;IAC/E,eAAM,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC;IAC3C,MAAM,WAAW,GAA2B,EAAE,CAAC;IAC/C,CAAC,GAAG,IAAI,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;QACrC,eAAM,CAAC,IAAI,CAAC,+BAA+B,GAAG,EAAE,CAAC,CAAC;QAClD,MAAM,OAAO,GAAG,iBAAE,CAAC,IAAI,CAAC,YAAY,GAAG,eAAe,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;QACxF,WAAW,CAAC,MAAM,GAAG,EAAE,CAAC,GAAG,OAAO,CAAC;IACvC,CAAC,CAAC,CAAC;IACH,OAAO,WAAW,CAAC;AACvB,CAAC;AACD,KAAK,UAAU,kBAAkB,CAAC,WAAmB;IACjD,MAAM,MAAM,GAAG,MAAM,EAAE,CAAC,GAAG,CAAC,aAAa,EAAE,WAAW,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IAC5E,IAAI,CAAC,MAAM,EAAE,CAAC;QACV,OAAO,SAAS,CAAC;IACrB,CAAC;IACD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;QACxB,OAAO,MAAM,CAAC;IAClB,CAAC;IACD,IAAI,OAAO,MAAM,KAAK,QAAQ,IAAI,UAAU,IAAI,MAAM,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC;QACvF,OAAO,MAAM,CAAC,QAAQ,CAAC;IAC3B,CAAC;IAED,OAAO,SAAS,CAAC;AACrB,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (c) 2024 EclipseSource 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
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
export type ReleaseRepository = 'npm' | 'm2' | 'm2&p2' | 'p2';
|
|
17
|
+
export type GlspComponent = (typeof GlspComponent)[keyof Omit<typeof GlspComponent, 'parse'>];
|
|
18
|
+
export declare const GlspComponent: {
|
|
19
|
+
readonly DEV_PACKAGES: "dev-packages";
|
|
20
|
+
readonly CLIENT: "client";
|
|
21
|
+
readonly THEIA_INTEGRATION: "theia-integration";
|
|
22
|
+
readonly VSCODE_INTEGRATION: "vscode-integration";
|
|
23
|
+
readonly ECLIPSE_INTEGRATION: "eclipse-integration";
|
|
24
|
+
readonly PLAYWRIGHT: "playwright";
|
|
25
|
+
readonly EXAMPLES: "examples";
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=glsp-component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glsp-component.d.ts","sourceRoot":"","sources":["../../src/common/glsp-component.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAClF,MAAM,MAAM,iBAAiB,GAAG,KAAK,GAAG,IAAI,GAAG,OAAO,GAAG,IAAI,CAAC;AAE9D,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,IAAI,CAAC,OAAO,aAAa,EAAE,OAAO,CAAC,CAAC,CAAC;AAC9F,eAAO,MAAM,aAAa;;;;;;;;CAQhB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GlspComponent = void 0;
|
|
4
|
+
exports.GlspComponent = {
|
|
5
|
+
DEV_PACKAGES: 'dev-packages',
|
|
6
|
+
CLIENT: 'client',
|
|
7
|
+
THEIA_INTEGRATION: 'theia-integration',
|
|
8
|
+
VSCODE_INTEGRATION: 'vscode-integration',
|
|
9
|
+
ECLIPSE_INTEGRATION: 'eclipse-integration',
|
|
10
|
+
PLAYWRIGHT: 'playwright',
|
|
11
|
+
EXAMPLES: 'examples'
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=glsp-component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glsp-component.js","sourceRoot":"","sources":["../../src/common/glsp-component.ts"],"names":[],"mappings":";;;AAkBa,QAAA,aAAa,GAAG;IACzB,YAAY,EAAE,cAAc;IAC5B,MAAM,EAAE,QAAQ;IAChB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,mBAAmB,EAAE,qBAAqB;IAC1C,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;CACd,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (c) 2024 EclipseSource 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
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
export declare const GlspRepoType: readonly ["dev", "client", "theia", "vscode", "eclipse", "nodeServer", "javaServer", "playwright"];
|
|
17
|
+
export type GlspRepoType = (typeof GlspRepoType)[number];
|
|
18
|
+
export declare const LinkType: readonly ["none", "yarnLink", "resolutions"];
|
|
19
|
+
export type LinkType = (typeof LinkType)[number];
|
|
20
|
+
export declare const ReleaseRepoType: readonly ["npm", "m2", "m2&p2", "p2"];
|
|
21
|
+
export type ReleaseRepoType = (typeof ReleaseRepoType)[number];
|
|
22
|
+
export declare const CloneType: readonly ["ssh", "https", "gh-cli"];
|
|
23
|
+
export type CloneType = (typeof CloneType)[number];
|
|
24
|
+
export interface GlspRepo {
|
|
25
|
+
ghRepo: string;
|
|
26
|
+
releaseRepo: ReleaseRepoType;
|
|
27
|
+
cloneType: CloneType;
|
|
28
|
+
directory: string;
|
|
29
|
+
dependencies: GlspRepoType[];
|
|
30
|
+
remote?: string;
|
|
31
|
+
branch?: string;
|
|
32
|
+
}
|
|
33
|
+
export declare const GLSP_REPO_DEFAULTS: Readonly<Record<GlspRepoType, Readonly<GlspRepo>>>;
|
|
34
|
+
export type RepoOptions = Partial<Omit<GlspRepo, 'dependencies' | 'releaseRepo' | 'ghRepo'>>;
|
|
35
|
+
export interface RepoConfig extends Partial<Record<GlspRepoType, RepoOptions | boolean>> {
|
|
36
|
+
baseDir: string;
|
|
37
|
+
force: boolean;
|
|
38
|
+
linkType: LinkType;
|
|
39
|
+
build: boolean;
|
|
40
|
+
}
|
|
41
|
+
export type resolvedRepoConfig = Required<RepoConfig>;
|
|
42
|
+
export declare function validateRepoConfig(input: object): string[];
|
|
43
|
+
export declare function validateRepoOptions(input: object, errors?: string[]): string[];
|
|
44
|
+
//# sourceMappingURL=glsp-repo.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glsp-repo.d.ts","sourceRoot":"","sources":["../../src/common/glsp-repo.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAElF,eAAO,MAAM,YAAY,oGASf,CAAC;AACX,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,CAAC,CAAC;AAEzD,eAAO,MAAM,QAAQ,8CAA+C,CAAC;AACrE,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC;AAEjD,eAAO,MAAM,eAAe,uCAAwC,CAAC;AACrE,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,CAAC,CAAC;AAE/D,eAAO,MAAM,SAAS,qCAAsC,CAAC;AAC7D,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC;AAEnD,MAAM,WAAW,QAAQ;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,eAAe,CAAC;IAC7B,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,YAAY,EAAE,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,kBAAkB,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAyDxE,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,QAAQ,EAAE,cAAc,GAAG,aAAa,GAAG,QAAQ,CAAC,CAAC,CAAC;AAE7F,MAAM,WAAW,UAAW,SAAQ,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;IACpF,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,OAAO,CAAC;IACf,QAAQ,EAAE,QAAQ,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CAAC,UAAU,CAAC,CAAC;AAEtD,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAiC1D;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAM,EAAO,GAAG,MAAM,EAAE,CAiBlF"}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/********************************************************************************
|
|
3
|
+
* Copyright (c) 2024 EclipseSource and others.
|
|
4
|
+
*
|
|
5
|
+
* This program and the accompanying materials are made available under the
|
|
6
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
*
|
|
9
|
+
* This Source Code may also be made available under the following Secondary
|
|
10
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
* with the GNU Classpath Exception which is available at
|
|
13
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
*
|
|
15
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
********************************************************************************/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.GLSP_REPO_DEFAULTS = exports.CloneType = exports.ReleaseRepoType = exports.LinkType = exports.GlspRepoType = void 0;
|
|
19
|
+
exports.validateRepoConfig = validateRepoConfig;
|
|
20
|
+
exports.validateRepoOptions = validateRepoOptions;
|
|
21
|
+
exports.GlspRepoType = [
|
|
22
|
+
'dev', //
|
|
23
|
+
'client',
|
|
24
|
+
'theia',
|
|
25
|
+
'vscode',
|
|
26
|
+
'eclipse',
|
|
27
|
+
'nodeServer',
|
|
28
|
+
'javaServer',
|
|
29
|
+
'playwright'
|
|
30
|
+
];
|
|
31
|
+
exports.LinkType = ['none', 'yarnLink', 'resolutions'];
|
|
32
|
+
exports.ReleaseRepoType = ['npm', 'm2', 'm2&p2', 'p2'];
|
|
33
|
+
exports.CloneType = ['ssh', 'https', 'gh-cli'];
|
|
34
|
+
exports.GLSP_REPO_DEFAULTS = {
|
|
35
|
+
dev: {
|
|
36
|
+
ghRepo: 'eclipse-glsp/glsp',
|
|
37
|
+
releaseRepo: 'npm',
|
|
38
|
+
cloneType: 'ssh',
|
|
39
|
+
directory: 'glsp',
|
|
40
|
+
dependencies: []
|
|
41
|
+
},
|
|
42
|
+
client: {
|
|
43
|
+
ghRepo: 'eclipse-glsp/glsp-client',
|
|
44
|
+
releaseRepo: 'npm',
|
|
45
|
+
cloneType: 'ssh',
|
|
46
|
+
directory: 'glsp-client',
|
|
47
|
+
dependencies: ['dev']
|
|
48
|
+
},
|
|
49
|
+
theia: {
|
|
50
|
+
ghRepo: 'eclipse-glsp/glsp-theia-integration',
|
|
51
|
+
releaseRepo: 'npm',
|
|
52
|
+
cloneType: 'ssh',
|
|
53
|
+
directory: 'glsp-theia-integration',
|
|
54
|
+
dependencies: ['dev', 'client', 'nodeServer']
|
|
55
|
+
},
|
|
56
|
+
vscode: {
|
|
57
|
+
ghRepo: 'eclipse-glsp/glsp-vscode-integration',
|
|
58
|
+
releaseRepo: 'npm',
|
|
59
|
+
cloneType: 'ssh',
|
|
60
|
+
directory: 'glsp-vscode-integration',
|
|
61
|
+
dependencies: ['dev', 'client', 'nodeServer']
|
|
62
|
+
},
|
|
63
|
+
eclipse: {
|
|
64
|
+
ghRepo: 'eclipse-glsp/glsp-eclipse-integration',
|
|
65
|
+
releaseRepo: 'p2',
|
|
66
|
+
cloneType: 'ssh',
|
|
67
|
+
directory: 'glsp-eclipse-integration',
|
|
68
|
+
dependencies: ['dev', 'client', 'javaServer']
|
|
69
|
+
},
|
|
70
|
+
nodeServer: {
|
|
71
|
+
ghRepo: 'eclipse-glsp/glsp-server-node',
|
|
72
|
+
releaseRepo: 'npm',
|
|
73
|
+
cloneType: 'ssh',
|
|
74
|
+
directory: 'glsp-server-node',
|
|
75
|
+
dependencies: ['dev', 'client']
|
|
76
|
+
},
|
|
77
|
+
javaServer: {
|
|
78
|
+
ghRepo: 'eclipse-glsp/glsp-server',
|
|
79
|
+
releaseRepo: 'm2&p2',
|
|
80
|
+
cloneType: 'ssh',
|
|
81
|
+
directory: 'glsp-server',
|
|
82
|
+
dependencies: []
|
|
83
|
+
},
|
|
84
|
+
playwright: {
|
|
85
|
+
ghRepo: 'eclipse-glsp/glsp-playwright',
|
|
86
|
+
releaseRepo: 'npm',
|
|
87
|
+
cloneType: 'ssh',
|
|
88
|
+
directory: 'glsp-playwright',
|
|
89
|
+
dependencies: ['dev']
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
function validateRepoConfig(input) {
|
|
93
|
+
const errors = [];
|
|
94
|
+
if ('baseDir' in input && typeof input.baseDir !== 'string') {
|
|
95
|
+
errors.push('baseDir must be a string when defined');
|
|
96
|
+
}
|
|
97
|
+
if ('force' in input && typeof input.force !== 'boolean') {
|
|
98
|
+
errors.push('force must be a boolean when defined');
|
|
99
|
+
}
|
|
100
|
+
if ('linkType' in input && (typeof input.linkType !== 'string' || !exports.LinkType.includes(input.linkType))) {
|
|
101
|
+
errors.push('linkType must be one of "none", "yarnLink", or "resolutions" when defined');
|
|
102
|
+
}
|
|
103
|
+
if ('build' in input && typeof input.build !== 'boolean') {
|
|
104
|
+
errors.push('build must be a boolean when defined');
|
|
105
|
+
}
|
|
106
|
+
// Validate GlspRepoType properties
|
|
107
|
+
exports.GlspRepoType.forEach(repoType => {
|
|
108
|
+
const config = input;
|
|
109
|
+
if (repoType in config) {
|
|
110
|
+
if (typeof config[repoType] !== 'boolean' && typeof config[repoType] !== 'object') {
|
|
111
|
+
errors.push(`${repoType} must be a boolean or an object when defined`);
|
|
112
|
+
}
|
|
113
|
+
if (typeof config[repoType] === 'object') {
|
|
114
|
+
validateRepoOptions(config[repoType], errors);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
});
|
|
118
|
+
return errors;
|
|
119
|
+
}
|
|
120
|
+
function validateRepoOptions(input, errors = []) {
|
|
121
|
+
if ('cloneType' in input && (typeof input.cloneType !== 'string' || !exports.CloneType.includes(input.cloneType))) {
|
|
122
|
+
errors.push('cloneType must be one of "ssh", "https", or "gh-cli" when defined');
|
|
123
|
+
}
|
|
124
|
+
if ('directory' in input && typeof input.directory !== 'string') {
|
|
125
|
+
errors.push('directory must be a string when defined');
|
|
126
|
+
}
|
|
127
|
+
if ('remote' in input && typeof input.remote !== 'string') {
|
|
128
|
+
errors.push('remote must be a string when defined');
|
|
129
|
+
}
|
|
130
|
+
if ('branch' in input && typeof input.branch !== 'string') {
|
|
131
|
+
errors.push('branch must be a string when defined');
|
|
132
|
+
}
|
|
133
|
+
return errors;
|
|
134
|
+
}
|
|
135
|
+
//# sourceMappingURL=glsp-repo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glsp-repo.js","sourceRoot":"","sources":["../../src/common/glsp-repo.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (c) 2024 EclipseSource 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
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=glsp-repo.spec.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glsp-repo.spec.d.ts","sourceRoot":"","sources":["../../src/common/glsp-repo.spec.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/********************************************************************************
|
|
3
|
+
* Copyright (c) 2024 EclipseSource and others.
|
|
4
|
+
*
|
|
5
|
+
* This program and the accompanying materials are made available under the
|
|
6
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
*
|
|
9
|
+
* This Source Code may also be made available under the following Secondary
|
|
10
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
* with the GNU Classpath Exception which is available at
|
|
13
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
*
|
|
15
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
********************************************************************************/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
const chai_1 = require("chai");
|
|
19
|
+
const glsp_repo_1 = require("./glsp-repo");
|
|
20
|
+
describe('RepoConfig', () => {
|
|
21
|
+
describe('validateRepoConfig', () => {
|
|
22
|
+
it('should return an empty array for an empty object', () => {
|
|
23
|
+
const config = {};
|
|
24
|
+
const result = (0, glsp_repo_1.validateRepoConfig)(config);
|
|
25
|
+
(0, chai_1.expect)(result).to.be.deep.equal([]);
|
|
26
|
+
});
|
|
27
|
+
it('should return an empty array for a config with valid base properties', () => {
|
|
28
|
+
const config = {
|
|
29
|
+
baseDir: 'baseDir',
|
|
30
|
+
build: true,
|
|
31
|
+
linkType: 'none',
|
|
32
|
+
force: true
|
|
33
|
+
};
|
|
34
|
+
const result = (0, glsp_repo_1.validateRepoConfig)(config);
|
|
35
|
+
(0, chai_1.expect)(result).to.be.deep.equal([]);
|
|
36
|
+
});
|
|
37
|
+
it('should return an error message for an invalid baseDir property', () => {
|
|
38
|
+
const config = {
|
|
39
|
+
baseDir: false
|
|
40
|
+
};
|
|
41
|
+
const result = (0, glsp_repo_1.validateRepoConfig)(config);
|
|
42
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
43
|
+
(0, chai_1.expect)(result[0]).to.match(/baseDir/);
|
|
44
|
+
});
|
|
45
|
+
it('should return an error message for an invalid build property', () => {
|
|
46
|
+
const config = {
|
|
47
|
+
build: 'invalid'
|
|
48
|
+
};
|
|
49
|
+
const result = (0, glsp_repo_1.validateRepoConfig)(config);
|
|
50
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
51
|
+
(0, chai_1.expect)(result[0]).to.match(/build/);
|
|
52
|
+
});
|
|
53
|
+
it('should return an error message for an invalid linkType property', () => {
|
|
54
|
+
const config = {
|
|
55
|
+
linkType: 'invalid'
|
|
56
|
+
};
|
|
57
|
+
const result = (0, glsp_repo_1.validateRepoConfig)(config);
|
|
58
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
59
|
+
(0, chai_1.expect)(result[0]).to.match(/linkType/);
|
|
60
|
+
});
|
|
61
|
+
it('should return an error message for an invalid force property', () => {
|
|
62
|
+
const config = {
|
|
63
|
+
force: 'invalid'
|
|
64
|
+
};
|
|
65
|
+
const result = (0, glsp_repo_1.validateRepoConfig)(config);
|
|
66
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
67
|
+
(0, chai_1.expect)(result[0]).to.match(/force/);
|
|
68
|
+
});
|
|
69
|
+
});
|
|
70
|
+
describe('validateRepoOptions', () => {
|
|
71
|
+
it('should return an empty array for an empty object', () => {
|
|
72
|
+
const options = {};
|
|
73
|
+
const result = (0, glsp_repo_1.validateRepoOptions)(options);
|
|
74
|
+
(0, chai_1.expect)(result).to.be.deep.equal([]);
|
|
75
|
+
});
|
|
76
|
+
it('should return an empty array for a options with valid properties', () => {
|
|
77
|
+
const options = {
|
|
78
|
+
branch: 'master',
|
|
79
|
+
cloneType: 'ssh',
|
|
80
|
+
directory: 'glsp',
|
|
81
|
+
remote: 'git@github.com:eclipse-glsp/glsp.git'
|
|
82
|
+
};
|
|
83
|
+
const result = (0, glsp_repo_1.validateRepoOptions)(options);
|
|
84
|
+
(0, chai_1.expect)(result).to.be.deep.equal([]);
|
|
85
|
+
});
|
|
86
|
+
it('should return an error message for an invalid branch property', () => {
|
|
87
|
+
const options = {
|
|
88
|
+
branch: false
|
|
89
|
+
};
|
|
90
|
+
const result = (0, glsp_repo_1.validateRepoOptions)(options);
|
|
91
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
92
|
+
(0, chai_1.expect)(result[0]).to.match(/branch/);
|
|
93
|
+
});
|
|
94
|
+
it('should return an error message for an invalid cloneType property', () => {
|
|
95
|
+
const options = {
|
|
96
|
+
cloneType: 'invalid'
|
|
97
|
+
};
|
|
98
|
+
const result = (0, glsp_repo_1.validateRepoOptions)(options);
|
|
99
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
100
|
+
(0, chai_1.expect)(result[0]).to.match(/cloneType/);
|
|
101
|
+
});
|
|
102
|
+
it('should return an error message for an invalid directory property', () => {
|
|
103
|
+
const options = {
|
|
104
|
+
directory: false
|
|
105
|
+
};
|
|
106
|
+
const result = (0, glsp_repo_1.validateRepoOptions)(options);
|
|
107
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
108
|
+
(0, chai_1.expect)(result[0]).to.match(/directory/);
|
|
109
|
+
});
|
|
110
|
+
it('should return an error message for an invalid remote property', () => {
|
|
111
|
+
const options = {
|
|
112
|
+
remote: false
|
|
113
|
+
};
|
|
114
|
+
const result = (0, glsp_repo_1.validateRepoOptions)(options);
|
|
115
|
+
(0, chai_1.expect)(result.length).to.be.equal(1);
|
|
116
|
+
(0, chai_1.expect)(result[0]).to.match(/remote/);
|
|
117
|
+
});
|
|
118
|
+
it('should return error messages for all invalid properties', () => {
|
|
119
|
+
const options = {
|
|
120
|
+
branch: false,
|
|
121
|
+
cloneType: 'invalid',
|
|
122
|
+
directory: false,
|
|
123
|
+
remote: false
|
|
124
|
+
};
|
|
125
|
+
const result = (0, glsp_repo_1.validateRepoOptions)(options);
|
|
126
|
+
(0, chai_1.expect)(result.length).to.be.equal(4);
|
|
127
|
+
});
|
|
128
|
+
});
|
|
129
|
+
});
|
|
130
|
+
//# sourceMappingURL=glsp-repo.spec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glsp-repo.spec.js","sourceRoot":"","sources":["../../src/common/glsp-repo.spec.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (c) 2024 EclipseSource 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
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=foo.spec.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"foo.spec.d.ts","sourceRoot":"","sources":["../src/foo.spec.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF"}
|
package/lib/foo.spec.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/********************************************************************************
|
|
3
|
+
* Copyright (c) 2024 EclipseSource and others.
|
|
4
|
+
*
|
|
5
|
+
* This program and the accompanying materials are made available under the
|
|
6
|
+
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
* http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
*
|
|
9
|
+
* This Source Code may also be made available under the following Secondary
|
|
10
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
* with the GNU Classpath Exception which is available at
|
|
13
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
*
|
|
15
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
16
|
+
********************************************************************************/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
describe('foo', () => {
|
|
19
|
+
it('should do something', () => {
|
|
20
|
+
// test
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
//# sourceMappingURL=foo.spec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"foo.spec.js","sourceRoot":"","sources":["../src/foo.spec.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF;;AAElF,QAAQ,CAAC,KAAK,EAAE,GAAG,EAAE;IACjB,EAAE,CAAC,qBAAqB,EAAE,GAAG,EAAE;QAC3B,OAAO;IACX,CAAC,CAAC,CAAC;AACP,CAAC,CAAC,CAAC"}
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* Copyright (c) 2024 EclipseSource 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
|
+
* This Source Code may also be made available under the following Secondary
|
|
9
|
+
* Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
* with the GNU Classpath Exception which is available at
|
|
12
|
+
* https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
*
|
|
14
|
+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
+
********************************************************************************/
|
|
16
|
+
import { RepoConfig as ResolvedRepoConfig } from './common/glsp-repo';
|
|
17
|
+
export type RepoConfig = Partial<ResolvedRepoConfig>;
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAElF,OAAO,EAAE,UAAU,IAAI,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAEtE,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC"}
|