Skip to content

Commit

Permalink
feat(deps): p-pipe@^3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evocateur committed Nov 17, 2020
1 parent ed76cdd commit 489f59e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 18 deletions.
4 changes: 2 additions & 2 deletions commands/publish/index.js
Expand Up @@ -652,7 +652,7 @@ class PublishCommand extends Command {

const opts = this.conf.snapshot;
const mapper = pPipe(
[
...[
this.options.requireScripts && ((pkg) => this.execScript(pkg, "prepublish")),

(pkg) =>
Expand Down Expand Up @@ -702,7 +702,7 @@ class PublishCommand extends Command {
});

const mapper = pPipe(
[
...[
(pkg) => {
const preDistTag = this.getPreDistTag(pkg);
const tag = !this.options.tempTag && preDistTag ? preDistTag : opts.tag;
Expand Down
2 changes: 1 addition & 1 deletion commands/publish/package.json
Expand Up @@ -62,7 +62,7 @@
"npmlog": "^4.1.2",
"p-finally": "^1.0.0",
"p-map": "^2.1.0",
"p-pipe": "^1.2.0",
"p-pipe": "^3.1.0",
"semver": "^7.3.2"
}
}
2 changes: 1 addition & 1 deletion commands/version/index.js
Expand Up @@ -571,7 +571,7 @@ class VersionCommand extends Command {
);
}

const mapUpdate = pPipe(actions);
const mapUpdate = pPipe(...actions);

chain = chain.then(() =>
runTopologically(this.packagesToVersion, mapUpdate, {
Expand Down
2 changes: 1 addition & 1 deletion commands/version/package.json
Expand Up @@ -53,7 +53,7 @@
"minimatch": "^3.0.4",
"npmlog": "^4.1.2",
"p-map": "^2.1.0",
"p-pipe": "^1.2.0",
"p-pipe": "^3.1.0",
"p-reduce": "^2.1.0",
"p-waterfall": "^2.1.0",
"semver": "^7.3.2",
Expand Down
27 changes: 15 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -72,7 +72,7 @@
"p-finally": "^1.0.0",
"p-map": "^2.1.0",
"p-map-series": "^1.0.0",
"p-pipe": "^1.2.0",
"p-pipe": "^3.1.0",
"p-queue": "^6.6.2",
"p-reduce": "^2.1.0",
"p-waterfall": "^2.1.0",
Expand Down

0 comments on commit 489f59e

Please sign in to comment.