8 lines
211 B
Bash
Executable File
8 lines
211 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
SCRIPT_DIR=$(cd "$(dirname "$0")" ; pwd -P)
|
|
|
|
tsc $SCRIPT_DIR/typeScript.ts --lib es6 --outfile $SCRIPT_DIR/javaScript.js
|
|
$SCRIPT_DIR/../toSwift $SCRIPT_DIR/typeScript.ts $SCRIPT_DIR/swift.swift
|
|
|