https://github.com/enlight/grunt-ibsforts
Grunt plugin that executes the Incremental Build Server for TypeScript
https://github.com/enlight/grunt-ibsforts
Last synced: over 1 year ago
JSON representation
Grunt plugin that executes the Incremental Build Server for TypeScript
- Host: GitHub
- URL: https://github.com/enlight/grunt-ibsforts
- Owner: enlight
- License: mit
- Created: 2016-01-05T05:11:03.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-21T16:53:44.000Z (over 10 years ago)
- Last Synced: 2025-01-27T07:43:14.479Z (over 1 year ago)
- Language: TypeScript
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-ibsforts
> Grunt plugin that provides a task to execute the Incremental Build Server for TypeScript.
## Getting Started
This plugin requires Grunt `~0.4.5`
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the
[Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a
[Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins.
Once you're familiar with that process, you may install this plugin with this command:
```shell
npm install enlight/grunt-ibsforts --save-dev
```
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line:
```js
grunt.loadNpmTasks('grunt-ibsforts');
```
## The `ibsforts` task
### Overview
In your project's `Gruntfile.js`, add a section named `ibsforts` to the data object passed into
`grunt.initConfig()`.
```js
grunt.initConfig({
ibsforts: {
options: {
// Default options for all targets.
},
your_target: {
options: {
// Target-specific options that override default options.
}
},
your_other_target: {
options: {
// Target-specific options that override default options.
}
}
}
});
```
### Options
#### options.projectConfigPath
Type: `string`
Default value: `undefined`
TODO
#### options.plugins
Type: `Array<{}>`
Default value: `undefined`
TODO
#### options.projects
Type: `Array<{}>`
Default value: `undefined`
TODO
#### options.watch
Type: `boolean`
Default value: `undefined`
TODO
### Usage Examples
TODO
## Development
- `npm install` to install all dependencies.
- `npm run build` to compile the TypeScript source files to JavaScript.
## License
MIT