Skip to content

Commit eb3909b

Browse files
committedMay 30, 2019
fix: formatting files
1 parent 43c00e0 commit eb3909b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+476
-653
lines changed
 

‎bin/cli.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -326,19 +326,14 @@ For more information, see https://webpack.js.org/api/cli/.`);
326326
const SIX_DAYS = 518400000;
327327
const now = new Date();
328328
if (now.getDay() === MONDAY) {
329-
const {
330-
access,
331-
constants,
332-
statSync,
333-
utimesSync,
334-
} = require("fs");
329+
const { access, constants, statSync, utimesSync } = require("fs");
335330
const lastPrint = statSync(openCollectivePath).atime;
336331
const lastPrintTS = new Date(lastPrint).getTime();
337332
const timeSinceLastPrint = now.getTime() - lastPrintTS;
338333
if (timeSinceLastPrint > SIX_DAYS) {
339334
require(openCollectivePath);
340335
// On windows we need to manually update the atime
341-
access(openCollectivePath, constants.W_OK, (e) => {
336+
access(openCollectivePath, constants.W_OK, e => {
342337
if (!e) utimesSync(openCollectivePath, now, now);
343338
});
344339
}

‎package-lock.json

+51-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.