Browse Source

Make all package build steps use tsc -b

Jason Grout 6 years ago
parent
commit
55b3814b63

+ 1 - 1
packages/documentsearch-extension/package.json

@@ -23,7 +23,7 @@
     "url": "https://github.com/jupyterlab/jupyterlab.git"
   },
   "scripts": {
-    "build": "tsc",
+    "build": "tsc -b",
     "clean": "rimraf lib",
     "prepublishOnly": "npm run build",
     "watch": "tsc -w --listEmittedFiles"

+ 1 - 1
packages/documentsearch/package.json

@@ -22,7 +22,7 @@
     "url": "https://github.com/jupyterlab/jupyterlab.git"
   },
   "scripts": {
-    "build": "tsc",
+    "build": "tsc -b",
     "clean": "rimraf lib",
     "prepublishOnly": "npm run build",
     "watch": "tsc -w --listEmittedFiles"

+ 1 - 1
packages/htmlviewer-extension/package.json

@@ -24,7 +24,7 @@
     "url": "https://github.com/mflevine/jupyterlab_html.git"
   },
   "scripts": {
-    "build": "tsc",
+    "build": "tsc -b",
     "clean": "rimraf lib",
     "prepublishOnly": "npm run build",
     "watch": "tsc -w"

+ 1 - 1
packages/htmlviewer/package.json

@@ -22,7 +22,7 @@
     "url": "https://github.com/jupyterlab/jupyterlab.git"
   },
   "scripts": {
-    "build": "tsc",
+    "build": "tsc -b",
     "clean": "rimraf lib",
     "prepublishOnly": "npm run build",
     "watch": "tsc -w --listEmittedFiles"