Skip to content

Commit a136162

Browse files
Merge pull request #84 from sandstreamdev/update_dependencies_2021_04_16
Update dependencies
2 parents bf387c6 + 60d2ece commit a136162

File tree

5 files changed

+2323
-3491
lines changed

5 files changed

+2323
-3491
lines changed

addExtensions.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
import { promises } from "fs";
44
import path from "path";
55
import os from "os";
6-
import pQueue from "p-queue";
6+
import PQueue from "p-queue";
77

88
const CONCURRENCY = Math.max(1, os.cpus().length - 1);
99

10-
const { default: PQueue } = pQueue;
11-
1210
import ignored from "./ignore.js";
1311

1412
const [sourceIgnoredFiles, ignoredDirectories] = ignored;

compile.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@ import { promisify } from "util";
55
import { exec } from "child_process";
66
import path from "path";
77
import os from "os";
8-
import pQueue from "p-queue";
8+
import PQueue from "p-queue";
99

1010
import ignored from "./ignore.js";
1111

1212
const CONCURRENCY = Math.max(1, os.cpus().length - 1);
1313

14-
const { default: PQueue } = pQueue;
15-
1614
const execAsync = promisify(exec);
1715

1816
const [sourceIgnoredFiles, ignoredDirectories] = ignored;

normalizeLineEndings.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
import { promises } from "fs";
44
import path from "path";
55
import os from "os";
6-
import pQueue from "p-queue";
6+
import PQueue from "p-queue";
77

88
import ignored from "./ignore.js";
99

1010
const CONCURRENCY = Math.max(1, os.cpus().length - 1);
1111

12-
const { default: PQueue } = pQueue;
13-
1412
const [, ignoredDirectories] = ignored;
1513

1614
const {

0 commit comments

Comments
 (0)