@async-generators/iterable
Advanced tools
Comparing version 0.4.1 to 0.5.0
{ | ||
"name": "@async-generators/iterable", | ||
"description": "wrap async/sync Iterable as an asyncIterable", | ||
"version": "0.4.1", | ||
"version": "0.5.0", | ||
"author": { | ||
@@ -41,5 +41,5 @@ "name": "Meirion Hughes", | ||
"scripts": { | ||
"test": "nyc node_modules/mocha/bin/mocha --require source-map-support/register --compilers ts:ts-node/register test/*.ts", | ||
"test": "nyc node_modules/mocha/bin/mocha --harmony test/*.ts", | ||
"build": "npm run build:commonjs && npm run build:es2015", | ||
"build:commonjs": "tsc --project tsconfig.build.json --rootDir src/ --outDir ./dist/commonjs", | ||
"build:commonjs": "tsc --project tsconfig.build.json --rootDir src/ --outDir ./dist/commonjs --module commonjs", | ||
"build:es2015": "tsc --project tsconfig.build.json --rootDir src/ --outDir ./dist/es2015 --module es2015", | ||
@@ -49,3 +49,3 @@ "cover": "codecov" | ||
"engines": { | ||
"node": ">=8.5.0" | ||
"node": ">=9.0.0" | ||
}, | ||
@@ -62,2 +62,3 @@ "nyc": { | ||
"require": [ | ||
"source-map-support/register", | ||
"ts-node/register" | ||
@@ -64,0 +65,0 @@ ], |
# iterable | ||
![logo](https://avatars1.githubusercontent.com/u/31987273?v=4&s=100) | ||
![logo](https://avatars1.githubusercontent.com/u/31987273?v=4&s=110) | ||
@@ -20,5 +20,5 @@ wrap an async/sync Iterable as async Iterable. | ||
This package's `main` entry points to a `commonjs` distribution. | ||
This package's `main` entry points to a `commonjs` dist. | ||
The `module` entry points to a `es2015` module dist. Both require native async-generator support, or be down-compiled with a webpack loader. | ||
Additionally, the `module` entry points to a `es2015` distribution, which can be used by build systems, such as webpack, to directly use es2015 modules. | ||
@@ -25,0 +25,0 @@ ## Api |
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
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
9128