typescript-watcher

0.0.4 • Public • Published

TypeScript-Watcher

A Node.js file-watcher for TypeScript, providing common functionality currently missing in the tsc command, notably the inability to specify output paths for individual files or groups and recursive, multi-file compilations.

Installation

  • Run sudo npm install -g typescript-watcher

Usage

  1. Build: To build all .ts sources and ouput .js files into a location, execute
    • tscwatch build <rootPath> <outputPath> [options]
  2. Watch: To continuously watch .ts files for changes and output compiled .js, execute
    • tscwatch watch <rootPath> <outputPath> [options]
  3. Load Config: To load an external config .json file, execute
  • tscwatch run-config <path to config.json> [options]

Configuration Options

{
  "watch": false,
  "rootPath": "tests/app",
  "outputPath": "tests/public2",
  "compilerOptions": {
    "comments"    : true, 
    "debug"     : false, 
    "declaration" : false, 
    "minw"      : false, 
    "moduleType"  : "AMD", 
    "sourcemap"   : false, 
    "target"    : "ES3" 
  }
}

More options

Usage: tscwatch [command] [options]

Possible commands are:
  tscwatch build: Build TypeScript project (short-cut alias: 'b')
  tscwatch watch: Watch TypeScript project for changes and automatically compile (short-cut alias: 'w')
  tscwatch run-config: Load config file and run tscwatch based upon supplied params (short-cut alias: 'rc')

To get help on individual command, execute 'tscwatch <command> --help' [options]

Options:
  -c, --comments    output comments in the compiled source
  -m, --moduleType  set the compiled source module type (commonjs or AMD).  Default is commonjs
  -s, --sourcemap   output sourcemaps alongside compiled source
  -t, --target      output JavaScript version; options are "ES3" and "ES5".  Default is "ES3"
  -v, --version     display tscwatch version

*** Currently a work in progress ***

TODO

  • Write tests

Thanks

License

The MIT license.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i typescript-watcher

Weekly Downloads

7

Version

0.0.4

License

none

Last publish

Collaborators

  • damassi