1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
-cp src
--each
# Closures
-main Closures1
-js bin/closures1.js
--next
-main Closures2
-js bin/closures2.js
--next
-D js-classic
-main Closures1
-js bin/closures1-classic.js
--next
-D js-classic
-main Closures2
-js bin/closures2-classic.js
#ObjectMap
--next
-main ObjectMap1
-js bin/objectMap1.js
--next
-main ObjectMap2
-js bin/objectMap2.js
--next
-D js-classic
-main ObjectMap1
-js bin/objectMap1-classic.js
--next
-D js-classic
-main ObjectMap2
-js bin/objectMap2-classic.js
# Run tests
--next
-cmd node run.js
|