Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/broucz/template-ts-minify
https://github.com/broucz/template-ts-minify
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/broucz/template-ts-minify
- Owner: broucz
- License: mit
- Created: 2019-09-09T10:01:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T06:28:08.000Z (almost 2 years ago)
- Last Synced: 2023-03-21T02:39:09.879Z (almost 2 years ago)
- Language: TypeScript
- Size: 94.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# template-ts-minify
Minimal boilerplate that compiles Typescript into a minifyed CommonJS file.
Example:
Input:
```ts
(function() {
let my_var = 'Hello';
alert(my_var);
})();
```Output:
```ts
(function(){alert("Hello")})();
```## Setup
```
git clone [email protected]:broucz/template-ts-minify.git
cd template-ts-minify
npm install
```## Build
```
npm run build
```