Comparing version 1.0.4 to 2.0.0
157
package.json
{ | ||
"name": "it-merge", | ||
"version": "1.0.4", | ||
"version": "2.0.0", | ||
"description": "Treat one or more iterables as a single iterable", | ||
"main": "index.js", | ||
"repository": "github:achingbrain/it", | ||
"author": "Alex Potsides <alex@achingbrain.net>", | ||
"license": "Apache-2.0 OR MIT", | ||
"homepage": "https://github.com/achingbrain/it/tree/master/packages/it-merge#readme", | ||
"bugs": "https://github.com/achingbrain/it/issues", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/achingbrain/it.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/achingbrain/it/issues" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"npm": ">=7.0.0" | ||
}, | ||
"type": "module", | ||
"types": "./dist/src/index.d.ts", | ||
"files": [ | ||
"src", | ||
"dist/src", | ||
"!dist/test", | ||
"!**/*.tsbuildinfo" | ||
], | ||
"exports": { | ||
".": { | ||
"types": "./dist/src/index.d.ts", | ||
"import": "./dist/src/index.js" | ||
} | ||
}, | ||
"eslintConfig": { | ||
"extends": "ipfs", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
} | ||
}, | ||
"release": { | ||
"branches": [ | ||
"master" | ||
], | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
"preset": "conventionalcommits", | ||
"releaseRules": [ | ||
{ | ||
"breaking": true, | ||
"release": "major" | ||
}, | ||
{ | ||
"revert": true, | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "feat", | ||
"release": "minor" | ||
}, | ||
{ | ||
"type": "fix", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "docs", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "test", | ||
"release": "patch" | ||
}, | ||
{ | ||
"type": "deps", | ||
"release": "patch" | ||
}, | ||
{ | ||
"scope": "no-release", | ||
"release": false | ||
} | ||
] | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"preset": "conventionalcommits", | ||
"presetConfig": { | ||
"types": [ | ||
{ | ||
"type": "feat", | ||
"section": "Features" | ||
}, | ||
{ | ||
"type": "fix", | ||
"section": "Bug Fixes" | ||
}, | ||
{ | ||
"type": "chore", | ||
"section": "Trivial Changes" | ||
}, | ||
{ | ||
"type": "docs", | ||
"section": "Documentation" | ||
}, | ||
{ | ||
"type": "deps", | ||
"section": "Dependencies" | ||
}, | ||
{ | ||
"type": "test", | ||
"section": "Tests" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
"@semantic-release/git" | ||
] | ||
}, | ||
"scripts": { | ||
"test": "ava", | ||
"lint": "standard", | ||
"coverage": "nyc --reporter html --reporter lcov ava", | ||
"clean": "rm -rf .nyc_output coverage dist", | ||
"check": "tsc --noEmit", | ||
"build": "npm run build:types", | ||
"build:types": "tsc --emitDeclarationOnly --declarationDir dist", | ||
"prepublishOnly": "npm run build" | ||
"build": "aegir build", | ||
"lint": "aegir lint", | ||
"dep-check": "aegir dep-check", | ||
"clean": "aegir clean", | ||
"test": "aegir test", | ||
"test:node": "aegir test -t node --cov", | ||
"test:chrome": "aegir test -t browser --cov", | ||
"test:chrome-webworker": "aegir test -t webworker", | ||
"test:firefox": "aegir test -t browser -- --browser firefox", | ||
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox", | ||
"release": "aegir release" | ||
}, | ||
"author": "Alex Potsides <alex@achingbrain.net>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"it-pushable": "^1.4.0" | ||
"it-pushable": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"ava": "^3.12.1", | ||
"it-all": "^1.0.6", | ||
"nyc": "^15.1.0", | ||
"standard": "^16.0.3", | ||
"typescript": "^4.0.2" | ||
}, | ||
"types": "dist/index.d.ts", | ||
"gitHead": "29126fa87dae108acef381693812f22ac8f9362b" | ||
"aegir": "^37.5.0", | ||
"it-all": "^2.0.0" | ||
} | ||
} |
@@ -1,19 +0,28 @@ | ||
# it-merge | ||
# it-merge <!-- omit in toc --> | ||
[![Build status](https://github.com/achingbrain/it/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/achingbrain/it/actions/workflows/test.yml) [![Coverage Status](https://coveralls.io/repos/github/achingbrain/it/badge.svg?branch=master)](https://coveralls.io/github/achingbrain/it?branch=master) [![Dependencies Status](https://david-dm.org/achingbrain/it/status.svg?path=packages/it-merge)](https://david-dm.org/achingbrain/it?path=packages/it-merge) | ||
[![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) | ||
[![CI](https://img.shields.io/github/workflow/status/achingbrain/it/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml) | ||
> Treat a number of (async) iterables as if they were one | ||
> Treat one or more iterables as a single iterable | ||
Nb. sources are iterated over in parallel so the order of emitted items is not guaranteed. | ||
## Table of contents <!-- omit in toc --> | ||
- [Install](#install) | ||
- [Usage](#usage) | ||
- [License](#license) | ||
- [Contribute](#contribute) | ||
## Install | ||
```sh | ||
$ npm install --save it-merge | ||
```console | ||
$ npm i it-merge | ||
``` | ||
Nb. sources are iterated over in parallel so the order of emitted items is not guaranteed. | ||
## Usage | ||
```javascript | ||
const all = require('it-merge') | ||
import merge from 'it-merge' | ||
import all from 'it-all' | ||
@@ -28,1 +37,12 @@ // This can also be an iterator, async iterator, generator, etc | ||
``` | ||
## License | ||
Licensed under either of | ||
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>) | ||
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>) | ||
## Contribute | ||
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
7858
2
8
60
0
48
0
Yes
1
80
1
+ Addedit-pushable@3.2.3(transitive)
+ Addedp-defer@4.0.1(transitive)
- Removedfast-fifo@1.3.2(transitive)
- Removedit-pushable@1.4.2(transitive)
Updatedit-pushable@^3.1.0