Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prepare-tests « scripts « ajv « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f62634e23701173ec548f05a863e9ea30f862ed (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env sh

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/");'