-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from yoshuawuyts/scriptsies
Scriptsies
- Loading branch information
Showing
6 changed files
with
197 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
node_modules/ | ||
coverage/ | ||
coverage.json | ||
dist/ | ||
tmp/ | ||
.sauce-credentials.json | ||
sauce_connect.log | ||
npm-debug.log* | ||
coverage.json | ||
.DS_Store | ||
.sauce-credentials.json | ||
*.swp | ||
sauce_connect.log | ||
.zuulrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<html> | ||
<head> | ||
<title>Vanilla example</title> | ||
</head> | ||
<body> | ||
<script src="../../dist/choo.min.js"></script> | ||
<script> | ||
const app = choo() | ||
|
||
app.model({ | ||
namespace: 'counter', | ||
state: { | ||
count: 0 | ||
}, | ||
reducers: { | ||
increment: (action, state) => ({count: state.count + 1}), | ||
decrement: (action, state) => ({count: state.count - 1}) | ||
} | ||
}) | ||
|
||
const mainView = (params, state, send) => { | ||
return choo.view` | ||
<main class="app"> | ||
<h1>Counter example</h1> | ||
<div> | ||
Count: ${state.counter.count} | ||
<button onclick=${(e) => send('counter:increment')}>+</button> | ||
<button onclick=${(e) => send('counter:decrement')}>-</button> | ||
</div> | ||
</main> | ||
` | ||
} | ||
|
||
app.router((route) => [ | ||
route('/', mainView) | ||
]) | ||
|
||
const tree = app.start() | ||
document.body.appendChild(tree) | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/sh | ||
|
||
dirname=$(dirname "$(readlink -f "$0")") | ||
|
||
browserify="$dirname/../node_modules/.bin/browserify" | ||
uglify="$dirname/../node_modules/.bin/uglifyjs" | ||
|
||
usage () { | ||
printf "Usage: build-umd <argument>\n" | ||
} | ||
|
||
build_dev () { | ||
mkdir -p dist/ | ||
NODE_ENV=development "$browserify" index.js \ | ||
--standalone=choo \ | ||
-t envify \ | ||
> dist/choo.js | ||
} | ||
|
||
build_min () { | ||
mkdir -p dist/ | ||
NODE_ENV=production "$browserify" index.js \ | ||
--standalone=choo \ | ||
-t envify \ | ||
-g unassertify \ | ||
-g uglifyify \ | ||
| "$uglify" \ | ||
> dist/choo.min.js | ||
} | ||
|
||
# parse CLI flags | ||
while true; do | ||
case "$1" in | ||
-h|--help) usage && exit 1 ;; | ||
-- ) shift; break ;; | ||
* ) break ;; | ||
esac | ||
done | ||
|
||
case "$1" in | ||
d|dev) shift; build_dev "$@" ;; | ||
m|min) shift; build_min "$@" ;; | ||
*) shift; build_min "$@" ;; | ||
esac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
#!/bin/sh | ||
|
||
# setting exit because we're linting and need to exit on failure | ||
set -e | ||
|
||
dirname=$(dirname "$(readlink -f "$0")") | ||
|
||
dependency_check="$dirname/../node_modules/.bin/dependency-check" | ||
tape_istanbul="$dirname/../node_modules/.bin/tape-istanbul" | ||
browserify="$dirname/../node_modules/.bin/browserify" | ||
standard="$dirname/../node_modules/.bin/standard" | ||
tape_run="$dirname/../node_modules/.bin/tape-run" | ||
istanbul="$dirname/../node_modules/.bin/istanbul" | ||
zuul="$dirname/../node_modules/.bin/zuul" | ||
|
||
usage () { | ||
printf "Usage: test\n" | ||
} | ||
|
||
lint () { | ||
"$standard" | ||
} | ||
|
||
test_electron () { | ||
check_deps | ||
lint | ||
"$browserify" tests/**/*.js \ | ||
-t es2020 \ | ||
-p proxyquire-universal \ | ||
| "$tape_run" | ||
} | ||
|
||
test_cov () { | ||
check_deps | ||
lint | ||
"$browserify" tests/**/*.js \ | ||
-t es2020 \ | ||
-p proxyquire-universal \ | ||
-p tape-istanbul/plugin \ | ||
| "$tape_run" \ | ||
| "$tape_istanbul" \ | ||
&& "$istanbul" report | ||
} | ||
|
||
test_server () { | ||
lint | ||
standard | ||
check_deps | ||
NODE_ENV=test node tests/server/* | ||
} | ||
|
||
test_browser () { | ||
NODE_ENV=test "$zuul" tests/browser/* | ||
} | ||
|
||
test_browser_local () { | ||
lint | ||
check_deps | ||
NODE_ENV=test "$zuul" --local 8080 -- tests/browser/* | ||
} | ||
|
||
check_deps () { | ||
"$dependency_check" . --entry 'index.js' | ||
"$dependency_check" . --entry 'index.js' --extra --no-dev \ | ||
-i xhr | ||
} | ||
|
||
# set CLI flags | ||
# parse CLI flags | ||
while true; do | ||
case "$1" in | ||
-h|--help) usage && exit 1 ;; | ||
-- ) shift; break ;; | ||
* ) break ;; | ||
esac | ||
done | ||
|
||
case "$1" in | ||
e|electron) shift; test_electron "$@" && exit ;; | ||
b|browser) shift; test_browser "$@" && exit ;; | ||
l|browser-local) shift; test_browser_local "$@" && exit ;; | ||
s|server) shift; test_server "$@" && exit ;; | ||
c|cov) shift; test_cov "$@" && exit ;; | ||
d|deps) shift; check_deps "$@" && exit ;; | ||
esac |