#!/bin/sh

set -e

for dir in plugins/*/; do
    echo "Building $dir"
    cd $dir
    npm install
    npm run vsce
    cp *.vsix ../
    cd -
done