@html-validate/eslint-config 5.5.19 → 5.5.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +7 -7
- package/dist/cli.js.map +2 -2
- package/package.json +5 -5
package/dist/cli.js
CHANGED
@@ -12764,7 +12764,7 @@ var require_chokidar = __commonJS({
|
|
12764
12764
|
const awf = opts.awaitWriteFinish;
|
12765
12765
|
let pw;
|
12766
12766
|
if (awf && (pw = this._pendingWrites.get(path3))) {
|
12767
|
-
pw.lastChange = new Date();
|
12767
|
+
pw.lastChange = /* @__PURE__ */ new Date();
|
12768
12768
|
return this;
|
12769
12769
|
}
|
12770
12770
|
if (opts.atomic) {
|
@@ -12882,7 +12882,7 @@ var require_chokidar = __commonJS({
|
|
12882
12882
|
if (this.options.cwd && !sysPath.isAbsolute(path3)) {
|
12883
12883
|
fullPath = sysPath.join(this.options.cwd, path3);
|
12884
12884
|
}
|
12885
|
-
const now = new Date();
|
12885
|
+
const now = /* @__PURE__ */ new Date();
|
12886
12886
|
const awaitWriteFinish = (prevStat) => {
|
12887
12887
|
fs3.stat(fullPath, (err, curStat) => {
|
12888
12888
|
if (err || !this._pendingWrites.has(path3)) {
|
@@ -12890,7 +12890,7 @@ var require_chokidar = __commonJS({
|
|
12890
12890
|
awfEmit(err);
|
12891
12891
|
return;
|
12892
12892
|
}
|
12893
|
-
const now2 = Number(new Date());
|
12893
|
+
const now2 = Number(/* @__PURE__ */ new Date());
|
12894
12894
|
if (prevStat && curStat.size !== prevStat.size) {
|
12895
12895
|
this._pendingWrites.get(path3).lastChange = now2;
|
12896
12896
|
}
|
@@ -14445,7 +14445,7 @@ var require_package = __commonJS({
|
|
14445
14445
|
"package.json"(exports, module2) {
|
14446
14446
|
module2.exports = {
|
14447
14447
|
name: "@html-validate/eslint-config",
|
14448
|
-
version: "5.5.
|
14448
|
+
version: "5.5.20",
|
14449
14449
|
description: "Eslint sharable config used by the various HTML-validate packages",
|
14450
14450
|
keywords: [
|
14451
14451
|
"eslint"
|
@@ -14479,15 +14479,15 @@ var require_package = __commonJS({
|
|
14479
14479
|
},
|
14480
14480
|
dependencies: {
|
14481
14481
|
"@rushstack/eslint-patch": "1.2.0",
|
14482
|
-
eslint: "8.
|
14482
|
+
eslint: "8.32.0",
|
14483
14483
|
"eslint-config-prettier": "8.6.0",
|
14484
14484
|
"eslint-config-sidvind": "1.3.2",
|
14485
14485
|
"eslint-formatter-gitlab": "4.0.0",
|
14486
14486
|
"eslint-plugin-array-func": "3.1.8",
|
14487
|
-
"eslint-plugin-import": "2.27.
|
14487
|
+
"eslint-plugin-import": "2.27.5",
|
14488
14488
|
"eslint-plugin-node": "11.1.0",
|
14489
14489
|
"eslint-plugin-prettier": "4.2.1",
|
14490
|
-
"eslint-plugin-security": "1.
|
14490
|
+
"eslint-plugin-security": "1.7.0",
|
14491
14491
|
"eslint-plugin-sonarjs": "0.18.0"
|
14492
14492
|
},
|
14493
14493
|
devDependencies: {
|