1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-20 21:15:34 +00:00
notes/node_modules/ajv/scripts/prepare-tests
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

10 lines
226 B
Bash
Executable File

#!/usr/bin/env bash
set -e
mkdir -p .browser
find spec -type f -name '*.spec.js' | \
xargs -I {} sh -c \
'export f="{}"; browserify $f -t require-globify -t brfs -x ajv -u buffer -o $(echo $f | sed -e "s/spec/.browser/");'