From ff5d96e0d9cc775a2f7a07643bbc50c12402cfeb Mon Sep 17 00:00:00 2001 From: alex-ketch Date: Wed, 16 Feb 2022 17:55:18 -0500 Subject: [PATCH] fix(Web): Fix build:browser command --- web/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/package.json b/web/package.json index c697473fc5..a672e98a69 100644 --- a/web/package.json +++ b/web/package.json @@ -3,8 +3,8 @@ "version": "1.0.0", "description": "Web client for interacting with Stencila document server", "scripts": { - "build": "npm run build:js && npm run build:browser", - "build:browser": "parcel build . --no-autoinstall --target read,view,exec,edit", + "build": "npm run build:js && npm run build:browser && npm run build:ts", + "build:browser": "parcel build . --no-autoinstall --target read --target view --target exec --target edit", "build:js": "microbundle", "build:ts": "tsc --emitDeclarationOnly", "build:watch": "parcel watch",