Sfoglia il codice sorgente

👷 Add a bash script to build Pandora to a single file minified version

Pedro Schneider 3 anni fa
parent
commit
27c9899238
2 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 5 0
      build
  2. 1 0
      pandora.min.js

+ 5 - 0
build

@@ -0,0 +1,5 @@
+#!/bin/bash
+
+find pandora -type f -name '*.js' -exec cat {} + > build.js
+uglifyjs build.js --output pandora.min.js --compress --mangle
+rm build.js

File diff suppressed because it is too large
+ 1 - 0
pandora.min.js