From c2351b1fcf6ebf4132a7590d34568fc64297fd6a Mon Sep 17 00:00:00 2001 From: Devid Farinelli Date: Tue, 12 Mar 2019 19:06:17 +0100 Subject: [PATCH] feat(opencollective prompt): fix typo --- bin/cli.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index 108aa3c6b55..9bb50482867 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -7,6 +7,7 @@ (function() { // wrap in IIFE to be able to use return + const importLocal = require("import-local"); // Prefer the local installation of webpack-cli if (importLocal(__filename)) { @@ -475,7 +476,7 @@ For more information, see https://webpack.js.org/api/cli/.`); const now = new Date(); - const MONDAY = 2; + const MONDAY = 1; const SIX_DAYS = 518400000; if (now.getDay() === MONDAY) { const statSync = require("fs").statSync;