summaryrefslogtreecommitdiff
path: root/examples/scala-js/scripts/build-all-js.sh
blob: de0e295d25da7d815169d2e213b6da157fb84bf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

tasks="fastOptJS fullOptJS"
projects="helloworld/ reversi/ testingExample/test: testSuite/test:"

for v in 2.11.4 2.10.4; do
    echo "++$v"
    echo "package"

    for p in $projects; do
        for t in $tasks; do
            echo "$p$t"
        done
    done
done | sbt