# grunt-rmlines

> My hunky-dory module

Latest version **2.0.0** (published 2019-05-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install grunt-rmlines
pnpm add grunt-rmlines
yarn add grunt-rmlines
bun add grunt-rmlines
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2019-05-28 |
| First published | 2016-11-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6 |
| Dependencies | 2 |
| Unpacked size | 4.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | t1st3 |
| Maintainers | t1st3 |
| Keywords | gruntplugin, line, remove |

## Links

- npm: https://www.npmjs.com/package/grunt-rmlines
- Repository: https://github.com/t1st3/grunt-rmlines
- Homepage: https://github.com/t1st3/grunt-rmlines#readme
- Issues: https://github.com/t1st3/grunt-rmlines/issues
- npm.io page: https://npm.io/package/grunt-rmlines

## Dependencies (2)

- [rmlines](https://npm.io/package/rmlines.md) ^2.0.0
- [concat-stream](https://npm.io/package/concat-stream.md) ^2.0.0

## Alternatives

- [localforage](https://npm.io/package/localforage.md) — 6.2M weekly downloads
- [localforage-observable](https://npm.io/package/localforage-observable.md) — 30.8K weekly downloads
- [@y/y](https://npm.io/package/@y/y.md) — 30.1K weekly downloads
- [@metaobjectsdev/render](https://npm.io/package/@metaobjectsdev/render.md) — 3.5K weekly downloads
- [@ledgerhq/coin-algorand](https://npm.io/package/@ledgerhq/coin-algorand.md) — 1.1K weekly downloads

## Recent versions

- 2.0.0 (latest) — 2019-05-28
- 1.0.0 — 2018-05-06
- 0.2.0 — 2018-05-06
- 0.1.2 — 2017-09-20
- 0.1.1 — 2017-04-01
- 0.1.0 — 2016-11-09

## README

# grunt-rmlines [![Build Status Travis](https://travis-ci.org/t1st3/grunt-rmlines.svg?branch=master)](https://travis-ci.org/t1st3/grunt-rmlines) [![codecov](https://codecov.io/gh/t1st3/grunt-rmlines/badge.svg?branch=master)](https://codecov.io/gh/t1st3/grunt-rmlines?branch=master)

> A line-remover plugin for [`Grunt`](http://gruntjs.com/)

Thin wrapper around [`rmlines`](https://github.com/t1st3/rmlines) to make it a Grunt plugin.

Also available as a [gulp plugin](https://github.com/t1st3/gulp-rmlines).


## Install

```
$ npm install --save grunt-rmlines
```


## Usage

```js
'use strict';
module.exports = function (grunt) {
	grunt.initConfig({
		rmlines: {
			dist: {
				files: [{
					expand: false,
					cwd: 'fixtures/',
					src: '*initial.txt',
					dest: 'tmp/'
				}],
				lines: [2, 4],
				options: {
					maxLength: 30
				}
			}
		}
	});

	grunt.loadNpmTasks('grunt-rmlines');

	grunt.registerTask('default', [
		'rmlines'
	]);
};
```


## Options

See [`rmlines`'s options](https://github.com/t1st3/rmlines#options), which are all supported.


## Related

* [rmlines](https://github.com/t1st3/rmlines) | API for rmlines
* [rmlines-cli](https://github.com/t1st3/rmlines-cli) | CLI for rmlines
* [gulp-rmlines](https://github.com/t1st3/gulp-rmlines) | rmlines as a [`gulp`](http://gulpjs.com/) plugin


## License

MIT © [t1st3](https://t1st3.com)

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