mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 19:07:23 +00:00

Refs: https://github.com/npm/cli/blob/latest/CHANGELOG.md#702-2020-10-16 PR-URL: https://github.com/nodejs/node/pull/35667 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
13 lines
269 B
Bash
13 lines
269 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
mkdir -p .browser
|
|
|
|
echo
|
|
echo Preparing browser tests:
|
|
|
|
find spec -type f -name '*.spec.js' | \
|
|
xargs -I {} sh -c \
|
|
'export f="{}"; echo $f; browserify $f -t require-globify -t brfs -x ajv -u buffer -o $(echo $f | sed -e "s/spec/.browser/");'
|