File: get-crossfilter.js

package info (click to toggle)
r-cran-v8 6.0.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 436 kB
  • sloc: javascript: 980; cpp: 424; sh: 23; makefile: 8
file content (10 lines) | stat: -rwxr-xr-x 441 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
#https://crossfilter.github.io/crossfilter/

wget -q -N https://raw.githubusercontent.com/square/crossfilter/master/crossfilter.js
SRC=crossfilter.js
COMPRESSED=`echo $SRC | sed 's/\.js$/.min&/'`
closure-compiler  --charset 'utf-8' --js $SRC --js_output_file $COMPRESSED
# ?? yui-compressor $SRC > $COMPRESSED
# ?? uglifyjs $SRC --mangle > $COMPRESSED
wget -q -N https://raw.githubusercontent.com/square/crossfilter/master/LICENSE