From 1e2b542e4c26c4dcb0187388d38042d7125853a2 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Tue, 18 Jun 2019 15:18:08 -0400 Subject: [PATCH] Begin refactoring devices.js and create a new digital.js lib for the film-out features. Maybe think of renaming now, before it hurts. --- app/scripts/compile.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/scripts/compile.sh b/app/scripts/compile.sh index 3ab0abe..0874687 100644 --- a/app/scripts/compile.sh +++ b/app/scripts/compile.sh @@ -1,4 +1,5 @@ -#!/bin/sh +#!/bin/bash ./node_modules/.bin/tsc ./src/lib/ui/grid.ts --outFile ./lib/ui/grid.js --noImplicitAny --lib ES2017 --lib ES2016 --lib dom -t ES2016 ./node_modules/.bin/tsc ./src/lib/ui/seq.ts --outFile ./lib/ui/seq.js --noImplicitAny --lib ES2017 --lib ES2016 --lib dom -t ES2016 +./node_modules/.bin/tsc ./src/lib/ui/digital.ts --outFile ./lib/ui/digital.js --noImplicitAny --lib ES2017 --lib ES2016 --lib dom -t ES2016