Hey Daniel,
our VSCODE extension is finished! Please check here:
https://github.com/AppDrag/appdrag-vscode-extension
FYI it's not yet available on VSCODE marketplace (we need to submit it and wait for validation from MS) but you can still install it manually
about your question for a workflow with VSCODE/WEBPACK:
when you already have created/configured your webpack script you then usually to include it in your package.json > scripts > build
then run it with "npm run build"
you can add another script in package.json called "deploy" that will call appdrag-cli like this "appdrag push fs", this will push all the files from your local FS to appdrag
so you can run:
npm run build
npm run deploy