You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"dev:server": "npm --workspace apps/server run dev",
"dev:electron": "npm --workspace apps/electron run dev",
"dev:vscode": "npm --workspace apps/vscode-extension run dev",
"build": "npm run build:layout-storage && npm run build:shared && npm run build:server && npm run build:web && npm run build:electron && npm run build:vscode",
"build:layout-storage": "npm --workspace packages/layout-storage run build",
"build:shared": "npm --workspace packages/shared run build",
"build:server": "npm --workspace apps/server run build",
"build:web": "npm run build:layout-storage && npm --workspace apps/web run build",
"build:electron": "npm --workspace apps/electron run build",
"build:vscode": "npm --workspace apps/vscode-extension run build",
"package:electron": "npm --workspace apps/electron run package",
"package:vscode": "mkdir -p vsix && npm --workspace apps/vscode-extension run package && cp apps/vscode-extension/.vsce-staging/gts-viewer-vscode* ./vsix && echo 'Successfuly built the vsix extension:' && ls vsix/*.vsix",