- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
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/");'
|