Skip to content

Commit

Permalink
Zowe Suite v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Sep 19, 2024
2 parents 9e735eb + 94ede07 commit 8c7be01
Show file tree
Hide file tree
Showing 13 changed files with 2,743 additions and 5,181 deletions.
6 changes: 5 additions & 1 deletion pluginDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
"launchDefinition": {
"pluginShortNameKey": "VT Terminal",
"pluginShortNameDefault": "VT Terminal",
"imageSrc": "assets/icon.png"
"imageSrc": "v3/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",
Expand Down
39 changes: 0 additions & 39 deletions webClient/.angular-cli.json

This file was deleted.

99 changes: 99 additions & 0 deletions webClient/angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"org.zowe.terminal.vt": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": {
"base": "../web/v3",
"browser": ""
},
"index": "src/index.html",
"browser": "src/plugin.ts",
"polyfills": [
"zone.js"
],
"baseHref": "./",
"tsConfig": "tsconfig.json",
"assets": [
{
"glob": "**/*",
"input": "src/assets",
"output": "assets"
}
],
"styles": [],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kB",
"maximumError": "5MB"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kB",
"maximumError": "500kB"
}
],
"outputHashing": "none"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "org.zowe.terminal.vt:build:production"
},
"development": {
"buildTarget": "org.zowe.terminal.vt:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
"src/styles.css"
],
"scripts": []
}
}
}
}
}
}
Loading

0 comments on commit 8c7be01

Please sign in to comment.