10 lines
265 B
Bash
10 lines
265 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
REPO="$(pwd)"
|
||
|
|
||
|
# Publish webview contents
|
||
|
PACKAGEJSON="$REPO/package.json"
|
||
|
VERSION=$(node -p "require(\"$PACKAGEJSON\").version")
|
||
|
|
||
|
node build/azure-pipelines/common/publish-webview.js "$REPO/src/vs/workbench/contrib/webview/browser/pre/"
|