├── .gitignore ├── README.md ├── babel.config.js ├── commitlint.config.js ├── package.json ├── src ├── aggregate.ts └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/package.json -------------------------------------------------------------------------------- /src/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/src/aggregate.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './aggregate'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woovibr/mongo-aggregate-lodash/HEAD/yarn.lock --------------------------------------------------------------------------------