1.0.3 • Published 7 years ago

tsbuilder v1.0.3

Weekly downloads
3
License
GNU GPL v. 3
Repository
github
Last release
7 years ago

tsbuilder

gulp plugin to streamline my typescript building process

Example Usage

other options and their defaults are commented out.

gulpfile.js

var gulp = require("gulp");
var tsbuilder = require("tsbuilder");

gulp.task('default', function() {
	tsbuilder.getBundler({
		//logging: tsbuilder.createLogger('LOG'),
		//error: tsbuilder.createLogger('ERROR'),
		//outDir: 'dist',
		//baseDir: 'src',
		//watch: false,
		entry: 'src/index.ts' // required
	});
});

The above gulpfile will compile a javascript file 'dist/index.js' from its typescript source file 'src/index.ts'.

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

0.9.4

7 years ago

0.9.3

7 years ago

0.9.2

7 years ago

0.9.1

7 years ago

0.9.0

7 years ago