Skip to content

Commit

Permalink
perf: deps revision
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed May 28, 2020
1 parent 28afd2a commit 4f62817
Show file tree
Hide file tree
Showing 7 changed files with 263 additions and 235 deletions.
3 changes: 0 additions & 3 deletions lib/blork.js
@@ -1,13 +1,10 @@
const { existsSync, lstatSync } = require("fs");
const { checker, check, add, ValueError } = require("blork");
const { Signale } = require("signale");
const { Writable } = require("stream");
const { WritableStreamBuffer } = require("stream-buffers");

// Get some checkers.
const isAbsolute = checker("absolute");
const isObject = checker("object");
const isString = checker("string");

// Add a directory checker.
add(
Expand Down
2 changes: 1 addition & 1 deletion lib/cleanPath.js
@@ -1,5 +1,5 @@
const { normalize, isAbsolute, join } = require("path");
const { check } = require("blork");
const { check } = require("./blork");

/**
* Normalize and make a path absolute, optionally using a custom CWD.
Expand Down
4 changes: 2 additions & 2 deletions lib/getCommitsFiltered.js
@@ -1,8 +1,8 @@
const { relative, resolve } = require("path");
const { check, ValueError } = require("./blork");
const gitLogParser = require("git-log-parser");
const getStream = require("get-stream");
const execa = require("execa");
const { check, ValueError } = require("./blork");
const getStream = require("get-stream");
const cleanPath = require("./cleanPath");

/**
Expand Down
1 change: 0 additions & 1 deletion lib/getManifest.js
@@ -1,4 +1,3 @@
const { check } = require("blork");
const { existsSync, lstatSync, readFileSync } = require("fs");

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/getWorkspacesYarn.js
@@ -1,6 +1,6 @@
const { checker } = require("blork");
const glob = require("bash-glob");
const getManifest = require("./getManifest");
const { checker } = require("./blork");

/**
* Return array of package.json for Yarn workspaces.
Expand Down
7 changes: 4 additions & 3 deletions package.json
Expand Up @@ -57,11 +57,12 @@
"lodash": "^4.17.15",
"meow": "^7.0.1",
"promise-events": "^0.1.8",
"semantic-release": "^17.0.7",
"semantic-release": "^17.0.8",
"semver": "^7.3.2",
"signale": "^1.4.0",
"stream-buffers": "^3.0.2",
"tempy": "^0.5.0"
"tempy": "^0.5.0",
"execa": "^4.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
Expand All @@ -72,7 +73,7 @@
"codeclimate-test-reporter": "^0.5.1",
"commitlint": "^8.3.5",
"coveralls": "^3.1.0",
"eslint": "^7.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"file-url": "^3.0.0",
Expand Down
479 changes: 255 additions & 224 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 4f62817

Please sign in to comment.