# gulp-ng-deporder

> Reorder by angular module dependencies

Latest version **0.0.1** (published 2014-08-08) · 0 weekly downloads

## Install

```sh
npm install gulp-ng-deporder
pnpm add gulp-ng-deporder
yarn add gulp-ng-deporder
bun add gulp-ng-deporder
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2014-08-08 |
| First published | 2014-08-08 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.4.0 |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | driesdesmet@gmail.com |
| Maintainers | busata |
| Keywords | gulpplugin |

## Links

- npm: https://www.npmjs.com/package/gulp-ng-deporder
- Repository: https://github.com/Busata/gulp-ng-deporder
- Issues: https://github.com/Busata/gulp-ng-deporder/issues
- npm.io page: https://npm.io/package/gulp-ng-deporder

## Dependencies (2)

- [through2](https://npm.io/package/through2.md) ~0.4.1
- [gulp-util](https://npm.io/package/gulp-util.md) ~2.2.14

## Recent versions

- 0.0.1 (latest) — 2014-08-08

## README

## Usage

```javascript
var deporder = require('gulp-ng-deporder');
var concat   = require('gulp-concat');

gulp.task('scripts', function() {
  gulp.src('./lib/*.js')
    .pipe(deporder())
    .pipe(concat('all.js'))
    .pipe(gulp.dest('./dist/'))
});
```
Inspired by: https://github.com/mkleehammer/gulp-deporder/ !

This will reorder any javascript file containing an angular.module() declaration. In case a file was found containing
an angular.module("foo") before a file containing angular.module("foo", []) was found, it will sort it out.

This way, you can reuse an angular.module in several file & won't need any dependency management (browserify, requireJS...)

## TODO:

- Write tests before publishing it to npm?
- Integrate it with gulp-deporder by making the regex an option?
- Handle angular.modules declared over seperate lines, handle?
- Find the edge-cases...

## LICENSE

(MIT License)

Copyright (c) 2014 Dries De Smet <driesdesmet@gmail.com>

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.

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