Skip to content

Commit

Permalink
Update v3 paths
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs committed Sep 17, 2024
1 parent 725a0fa commit 6fd9ed4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions pluginDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions webClient/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": {
"base": "../web",
"base": "../web/v3",
"browser": ""
},
"index": "src/index.html",
Expand Down Expand Up @@ -96,4 +96,4 @@
}
}
}
}
}
4 changes: 2 additions & 2 deletions webClient/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions webClient/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand All @@ -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')
}
]
}),
Expand Down

0 comments on commit 6fd9ed4

Please sign in to comment.