diff --git a/package.json b/package.json index 9af4a81c..4ad13838 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ }, "private": true, "scripts": { - "reset": "lerna run clean && rimraf ./node_modules ./package-lock.json packages/*/node_modules packages/*/package-lock.json packages/*/dist", + "reset": "lerna run clean && rimraf ./node_modules ./package-lock.json packages/*/node_modules packages/*/package-lock.json", "test": "lerna run --concurrency 1 test -- --", "test:node": "lerna run --concurrency 1 test:node -- --", "test:chrome": "lerna run --concurrency 1 test:chrome -- --", @@ -26,6 +26,7 @@ "test:firefox-webworker": "lerna run --concurrency 1 test:firefox-webworker -- --", "test:electron-main": "lerna run --concurrency 1 test:electron-main -- --", "test:electron-renderer": "lerna run --concurrency 1 test:electron-renderer -- --", + "clean": "lerna run clean", "build": "lerna run build", "lint": "lerna run lint", "dep-check": "lerna run dep-check", diff --git a/packages/ipfs-unixfs-exporter/CHANGELOG.md b/packages/ipfs-unixfs-exporter/CHANGELOG.md index 7109d821..94aede46 100644 --- a/packages/ipfs-unixfs-exporter/CHANGELOG.md +++ b/packages/ipfs-unixfs-exporter/CHANGELOG.md @@ -1,3 +1,10 @@ +## [ipfs-unixfs-exporter-v7.0.10](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter-v7.0.9...ipfs-unixfs-exporter-v7.0.10) (2022-05-27) + + +### Bug Fixes + +* update deps ([#220](https://github.com/ipfs/js-ipfs-unixfs/issues/220)) ([08e851e](https://github.com/ipfs/js-ipfs-unixfs/commit/08e851e9c0dedf15f3a737157978a767343334f0)) + ## [ipfs-unixfs-exporter-v7.0.9](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter-v7.0.8...ipfs-unixfs-exporter-v7.0.9) (2022-05-27) diff --git a/packages/ipfs-unixfs-exporter/package.json b/packages/ipfs-unixfs-exporter/package.json index 88e1e2a2..a9787a0b 100644 --- a/packages/ipfs-unixfs-exporter/package.json +++ b/packages/ipfs-unixfs-exporter/package.json @@ -20,18 +20,6 @@ }, "type": "module", "types": "types/src/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "types/*", - "types/src/*" - ], - "types/*": [ - "types/*", - "types/src/*" - ] - } - }, "files": [ "*", "!**/*.tsbuildinfo", @@ -144,10 +132,9 @@ "test:firefox": "aegir test -t browser -- --browser firefox", "build": "aegir build && cp -R types dist", "preleaseOnly": "npx json -I -f dist/package.json -e this.types='\"src/index.d.ts\"'", - "clean": "rimraf ./dist", + "clean": "rimraf ./dist ./types", "lint": "aegir ts -p check && aegir lint", - "coverage": "nyc -s npm run test -t node && nyc report --reporter=html", - "dep-check": "aegir dep-check -i @types/mocha -i @types/sinon -i nyc -i abort-controller -i rimraf -i copy -i util -i crypto-browserify -i events -i readable-stream -i interface-blockstore", + "dep-check": "aegir dep-check -i @types/sinon -i nyc -i rimraf -i copy -i util -i crypto-browserify -i events -i readable-stream -i interface-blockstore", "release": "semantic-release" }, "dependencies": { @@ -176,7 +163,6 @@ "it-first": "^1.0.6", "merge-options": "^3.0.4", "native-abort-controller": "^1.0.3", - "nyc": "^15.0.0", "readable-stream": "^3.6.0", "rimraf": "^3.0.2", "sinon": "^14.0.0", diff --git a/packages/ipfs-unixfs-importer/CHANGELOG.md b/packages/ipfs-unixfs-importer/CHANGELOG.md index dcae67b8..704ded94 100644 --- a/packages/ipfs-unixfs-importer/CHANGELOG.md +++ b/packages/ipfs-unixfs-importer/CHANGELOG.md @@ -1,3 +1,15 @@ +## [ipfs-unixfs-importer-v9.0.10](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer-v9.0.9...ipfs-unixfs-importer-v9.0.10) (2022-05-27) + + +### Bug Fixes + +* remove typesVersions from package.json ([#219](https://github.com/ipfs/js-ipfs-unixfs/issues/219)) ([465670e](https://github.com/ipfs/js-ipfs-unixfs/commit/465670eab2e707b14b14047e2da4ede23590196e)), closes [#214](https://github.com/ipfs/js-ipfs-unixfs/issues/214) [#161](https://github.com/ipfs/js-ipfs-unixfs/issues/161) [#214](https://github.com/ipfs/js-ipfs-unixfs/issues/214) + + +### Trivial Changes + +* update dep-check command ([#221](https://github.com/ipfs/js-ipfs-unixfs/issues/221)) ([5802bd3](https://github.com/ipfs/js-ipfs-unixfs/commit/5802bd366768e1a024fad30e4190aed866f5c9ec)) + ## [ipfs-unixfs-importer-v9.0.9](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer-v9.0.8...ipfs-unixfs-importer-v9.0.9) (2022-05-27) diff --git a/packages/ipfs-unixfs-importer/package.json b/packages/ipfs-unixfs-importer/package.json index f4dede13..44e359c5 100644 --- a/packages/ipfs-unixfs-importer/package.json +++ b/packages/ipfs-unixfs-importer/package.json @@ -20,18 +20,6 @@ }, "type": "module", "types": "types/src/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "types/*", - "types/src/*" - ], - "types/*": [ - "types/*", - "types/src/*" - ] - } - }, "files": [ "*", "!**/*.tsbuildinfo", @@ -144,10 +132,9 @@ "test:firefox": "aegir test -t browser -- --browser firefox", "build": "aegir build && cp -R types dist", "preleaseOnly": "npx json -I -f dist/package.json -e this.types='\"src/index.d.ts\"'", - "clean": "rimraf ./dist", + "clean": "rimraf ./dist ./types", "lint": "aegir ts -p check && aegir lint", - "coverage": "nyc -s npm run test -t node && nyc report --reporter=html", - "de-pcheck": "aegir dep-check -i @types/mocha -i nyc -i rimraf -i copy -i util -i crypto-browserify -i events -i readable-stream -i assert -i interface-blockstore", + "dep-check": "aegir dep-check -i rimraf -i copy -i util -i crypto-browserify -i events -i readable-stream -i assert -i interface-blockstore", "release": "semantic-release" }, "dependencies": { @@ -175,7 +162,6 @@ "crypto-browserify": "^3.12.0", "events": "^3.3.0", "it-buffer-stream": "^2.0.0", - "nyc": "^15.0.0", "readable-stream": "^3.6.0", "rimraf": "^3.0.2", "util": "^0.12.3", diff --git a/packages/ipfs-unixfs/CHANGELOG.md b/packages/ipfs-unixfs/CHANGELOG.md index 47099297..84497cb9 100644 --- a/packages/ipfs-unixfs/CHANGELOG.md +++ b/packages/ipfs-unixfs/CHANGELOG.md @@ -1,3 +1,15 @@ +## [ipfs-unixfs-v6.0.9](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-v6.0.8...ipfs-unixfs-v6.0.9) (2022-05-27) + + +### Bug Fixes + +* remove typesVersions from package.json ([#219](https://github.com/ipfs/js-ipfs-unixfs/issues/219)) ([465670e](https://github.com/ipfs/js-ipfs-unixfs/commit/465670eab2e707b14b14047e2da4ede23590196e)), closes [#214](https://github.com/ipfs/js-ipfs-unixfs/issues/214) [#161](https://github.com/ipfs/js-ipfs-unixfs/issues/161) [#214](https://github.com/ipfs/js-ipfs-unixfs/issues/214) + + +### Trivial Changes + +* update dep-check command ([#221](https://github.com/ipfs/js-ipfs-unixfs/issues/221)) ([5802bd3](https://github.com/ipfs/js-ipfs-unixfs/commit/5802bd366768e1a024fad30e4190aed866f5c9ec)) + ## [ipfs-unixfs-v6.0.8](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-v6.0.7...ipfs-unixfs-v6.0.8) (2022-05-27) diff --git a/packages/ipfs-unixfs/package.json b/packages/ipfs-unixfs/package.json index 7afe45e5..1fa42d8d 100644 --- a/packages/ipfs-unixfs/package.json +++ b/packages/ipfs-unixfs/package.json @@ -20,18 +20,6 @@ }, "type": "module", "types": "types/src/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "types/*", - "types/src/*" - ], - "types/*": [ - "types/*", - "types/src/*" - ] - } - }, "files": [ "*", "!**/*.tsbuildinfo", @@ -148,10 +136,9 @@ "test:chrome": "aegir test -t browser --cov", "test:firefox": "aegir test -t browser -- --browser firefox", "build": "aegir build && cp -R types dist", - "clean": "rimraf ./dist", + "clean": "rimraf ./dist ./types", "lint": "aegir ts -p check && aegir lint", - "coverage": "nyc -s aegir test -t node && nyc report --reporter=html", - "dep-check": "aegir dep-check -i mkdirp -i @types/mocha -i nyc -i npm-run-all -i copy -i util", + "dep-check": "aegir dep-check -i mkdirp -i npm-run-all -i copy -i util", "release": "semantic-release" }, "dependencies": { @@ -163,7 +150,6 @@ "copy": "^0.3.2", "mkdirp": "^1.0.4", "npm-run-all": "^4.1.5", - "nyc": "^15.0.0", "uint8arrays": "^3.0.0", "util": "^0.12.3" },