# grunt-angular-tags

> angular-tags wrapper for grunt as plugin

Latest version **0.0.1** (published 2015-01-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install grunt-angular-tags
pnpm add grunt-angular-tags
yarn add grunt-angular-tags
bun add grunt-angular-tags
```

## 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.1 |
| Published | 2015-01-26 |
| First published | 2015-01-26 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | David Rodenas |
| Maintainers | drpicox |
| Keywords | grunt, angular, tags, components |

## Links

- npm: https://www.npmjs.com/package/grunt-angular-tags
- Repository: https://github.com/drpicox/grunt-angular-tags
- Issues: https://github.com/drpicox/grunt-angular-tags/issues
- npm.io page: https://npm.io/package/grunt-angular-tags

## Dependencies (2)

- [chalk](https://npm.io/package/chalk.md) ^0.5.1
- [angular-tags](https://npm.io/package/angular-tags.md) 0.0.1

## Recent versions

- 0.0.1 (latest) — 2015-01-26

## README

Grunt-angular-tags
==================

Wraper of [angular-tags](https://github.com/drpicox/angular-tags) for grunt.


Install
-------

```bash
$ npm install -g grunt-cli
$ npm install grunt
$ npm install grunt-angular-tags
```


Configuration
-------------

An example of `Gruntfile.js`:

```javascript
module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    'angular-tags': {
      options: {
        module: 'aModule',
      },
      build: {
        src: 'src/**.ntag',
        dest: 'dist/ntags.js'
      }
    }
  });

  // Load the plugin that provides the "angular-tags" task.
  grunt.loadNpmTasks('grunt-angular-tags');

  // Default task(s).
  grunt.registerTask('default', ['angular-tags']);

};
```

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