Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the
azure-devops-extension.json
,package.json
, and other configuration files to improve the build process, update dependencies, and restructure paths. The most important changes include updating thewebpack
configuration, modifying thepackage.json
scripts and dependencies, and restructuring theazure-devops-extension.json
file.Configuration and Build Process:
legacy/webpack.config.js
: AddedCopyWebpackPlugin
and modified theplugins
array to include it. Changed themode
to "development" and updated the output path for compiled files. [1] [2]legacy/package.json
: Updated thecompile
script to include a clean step and added new dependencies such ascopy-webpack-plugin
. Updated thesass
andsass-loader
versions. [1] [2] [3]Dependencies and Scripts:
package.json
: Updated thebuild:dev
script to include thelegacy
directory and added apostinstall
script to handlelegacy
dependencies. Adjustedwebpack
andwebpack-dev-server
versions. [1] [2] [3]File Structure and Paths:
azure-devops-extension.json
: Restructured thecategories
andscopes
arrays for better readability. Updated paths for various packages under thetargets
section. [1] [2]legacy/tsconfig.json
: Changed theoutDir
path for compiled JavaScript files fromdist/js
tojs
.Miscellaneous:
configs/dev.json
: Changed thebaseUri
fromhttps
tohttp
for local development.legacy/azure-devops-extension.json
: Removed the path fordist/css
and renamed the file fromvss-extension.json
.