# generator-bower-typescript

> Yeoman generator for Bower TypeScript modules

Latest version **0.0.4** (published 2015-04-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install generator-bower-typescript
pnpm add generator-bower-typescript
yarn add generator-bower-typescript
bun add generator-bower-typescript
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2015-04-02 |
| First published | 2015-03-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 5 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Dan Caddigan |
| Maintainers | goldcaddy77 |
| Keywords | yeoman-generator, typescript, gulp, gulp-bump |

## Links

- npm: https://www.npmjs.com/package/generator-bower-typescript
- Repository: https://github.com/goldcaddy77/generator-bower-typescript
- Issues: https://github.com/goldcaddy77/generator-bower-typescript/issues
- npm.io page: https://npm.io/package/generator-bower-typescript

## Dependencies (5)

- [path](https://npm.io/package/path.md) ^0.11.14
- [chalk](https://npm.io/package/chalk.md) ^1.0.0
- [yosay](https://npm.io/package/yosay.md) ^1.0.2
- [yeoman-generator](https://npm.io/package/yeoman-generator.md) ^0.18.9
- [underscore.string](https://npm.io/package/underscore.string.md) ^3.0.3

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.0.4 (latest) — 2015-04-02
- 0.0.3 — 2015-04-02
- 0.0.2 — 2015-04-02
- 0.0.1 — 2015-04-02
- 0.0.0 — 2015-03-27

## README

# Yeoman generator for Bower modules written in TypeScript

This is a generator to quickly create Bower modules written in TypeScript using Gulp for a task runner.  The generated Bower module has the following capabilities:

* Transpiles TypeScript to Javascript
* Creates both bower.json and package.json (for npm)
* Automatic bumping of patch version number through a gulp task


## Usage

Install global npm dependencies

        npm install -g yo gulp bower generator-bower-typescript

Make a new directory and `cd` into it:

        mkdir my-new-project && cd $_

Run `bower-typescript`:

        yo bower-typescript

After answering questions about your app, run the example:

        # build your module (compile ts -> js)
        gulp build

        # Set up development link to the module code
        bower link

        # Tie the example to your local bower module link
        cd examples
        bower link my-awesome-module

        # Install your module in the example project
        bower install

        # Open the test page
        open index.html

If you see an alert box that says "Hello World," you're good to go.


## Bower Registration

... TODO ...

## Bumping Your Module Version

The gulpfile contains a task - `bump` - that will bump your module version in bower.json and package.json, create a git tag and commit it locally.  All you need to do is push it to git:

     gulp bump
     git push origin master --tags

## Yeoman Info

### What is Yeoman?

Trick question. It's not a thing. It's this guy:

![](http://i.imgur.com/JHaAlBJ.png)

Basically, he wears a top hat, lives in your computer, and waits for you to tell him what kind of application you wish to create.

Not every new computer comes with a Yeoman pre-installed. He lives in the [npm](https://npmjs.org) package repository. You only have to ask for him once, then he packs up and moves into your hard drive. *Make sure you clean up, he likes new and shiny things.*


### Getting To Know Yeoman

Yeoman has a heart of gold. He's a person with feelings and opinions, but he's very easy to work with. If you think he's too opinionated, he can be easily convinced.

If you'd like to get to know Yeoman better and meet some of his friends, [Grunt](http://gruntjs.com) and [Bower](http://bower.io), check out the complete [Getting Started Guide](https://github.com/yeoman/yeoman/wiki/Getting-Started).

## License

MIT

---
_Source: https://npm.io/package/generator-bower-typescript · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
