Browse Source

Do not build unminimized artifact by default

The build process is capable of bundling both minimized and unminimized
artifacts for lib-jitsi-meet. However, there does not seem to be a good
reason to (1) always wait for the building of the two versions and (2)
distributing the unminimized artifact.
dev1
Lyubomir Marinov 9 years ago
parent
commit
ddc32e41dd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      package.json

+ 1
- 1
package.json View File

@@ -41,7 +41,7 @@
41 41
     "webpack": "*"
42 42
   },
43 43
   "scripts": {
44
-    "install": "webpack && webpack -p",
44
+    "install": "webpack -p",
45 45
     "lint": "jshint .",
46 46
     "validate": "npm ls"
47 47
   },

Loading…
Cancel
Save