An open API service indexing awesome lists of open source software.

https://github.com/naivefun/karma-webpack-typescript

A simple CLI starter for karma/webpack/typescript
https://github.com/naivefun/karma-webpack-typescript

cli karma npm typescript webpack webpack2

Last synced: 4 months ago
JSON representation

A simple CLI starter for karma/webpack/typescript

Awesome Lists containing this project

README

          

# karma-webpack-typescript
A simple CLI starter for karma/webpack/typescript

## Get Started

### Start Karma
```
npm test
```

You should see the mocha report for the example tests.

Create your own tests in `test` directory and source code in `src` directory. Karma will watch changes and re-run test cases on the fly.

### Publish
- create an account on https://www.npmjs.com/
- login in terminal with `npm login`
- run `npm publish`

`examples` directory contains an example of consumption of `karma-webpack-typescript` npm package.

## TO-DO
- library target (UMD by default)
- better webpack bundle
- ...