diff --git a/pluginDefinition.json b/pluginDefinition.json index 1389c89..f52bd16 100644 --- a/pluginDefinition.json +++ b/pluginDefinition.json @@ -13,6 +13,10 @@ "pluginShortNameDefault": "VT Terminal", "imageSrc": "assets/icon.png" }, + "entryPoint": { + "2.0": "main.js", + "3.0": "v3/main.js" + }, "descriptionKey": "VT Description", "descriptionDefault": "Basic VT Terminal Emulator for SSH and Telnet", "defaultWindowStyle": { diff --git a/webClient/angular.json b/webClient/angular.json index 95e5251..f7a1273 100644 --- a/webClient/angular.json +++ b/webClient/angular.json @@ -14,7 +14,7 @@ "builder": "@angular-devkit/build-angular:application", "options": { "outputPath": { - "base": "../web", + "base": "../web/v3", "browser": "" }, "index": "src/index.html", @@ -96,4 +96,4 @@ } } } -} \ No newline at end of file +} diff --git a/webClient/package-lock.json b/webClient/package-lock.json index 18b61ff..aed6e2d 100644 --- a/webClient/package-lock.json +++ b/webClient/package-lock.json @@ -1,12 +1,12 @@ { "name": "org.zowe.terminal.vt", - "version": "2.7.0", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "org.zowe.terminal.vt", - "version": "2.7.0", + "version": "3.0.0", "license": "EPL-2.0", "dependencies": { "bootstrap": "~5.3.2", diff --git a/webClient/webpack.config.js b/webClient/webpack.config.js index cd5e170..19b245f 100644 --- a/webClient/webpack.config.js +++ b/webClient/webpack.config.js @@ -26,7 +26,7 @@ const config = { path.resolve(__dirname, './src/plugin.ts') ], output: { - path: path.resolve(__dirname, '../web'), + path: path.resolve(__dirname, '../web/v3'), filename: '[name].js', clean: true }, @@ -52,7 +52,7 @@ const config = { patterns: [ { from: path.resolve(__dirname, './src/assets/icon.png'), - to: path.resolve('../web/assets/icon.png') + to: path.resolve('../web/v3/assets/icon.png') } ] }),