From 14e6ef57c91744afe105d4d906683b51f1c221c7 Mon Sep 17 00:00:00 2001
From: Alvaro Cabrera <pateketrueke@gmail.com>
Date: Fri, 7 Jul 2017 20:10:49 -0500
Subject: [PATCH] Cleanup

---
 build/.banner.txt |  1 -
 build/tsc.sh      | 12 ------------
 2 files changed, 13 deletions(-)
 delete mode 100755 build/tsc.sh

diff --git a/build/.banner.txt b/build/.banner.txt
index 846b2e53..17c789f6 100644
--- a/build/.banner.txt
+++ b/build/.banner.txt
@@ -1,7 +1,6 @@
 /*!
  * <%= pkg.name %> library v<%= pkg.version %>
  * <%= pkg.homepage %>
- * @preserve
  *
  * Copyright (c) 2014-<%= now.substr(0, 4) %> Alvaro Cabrera & Tomasz Ducin
  * Released under the <%= pkg.license %> license
diff --git a/build/tsc.sh b/build/tsc.sh
deleted file mode 100755
index 6f458856..00000000
--- a/build/tsc.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# --out will not work with CommonJS, see https://github.com/Microsoft/TypeScript/issues/1544
-tsc --module commonjs ts/index.ts ts/api/extend.ts # add `--noImplicitAny` at some point
-mkdir -p lib/api lib/class lib/core lib/generators lib/types
-
-mv ts/api/*.js lib/api/
-mv ts/class/*.js lib/class/
-mv ts/core/*.js lib/core/
-mv ts/generators/*.js lib/generators/
-mv ts/types/*.js lib/types/
-mv ts/*.js lib/
-- 
GitLab