Skip to content

Commit dbe20b0

Browse files
authored
Bump some deps and rule file path for different file systems (#577)
1 parent 78853eb commit dbe20b0

File tree

4 files changed

+79
-132
lines changed

4 files changed

+79
-132
lines changed

package-lock.json

Lines changed: 74 additions & 127 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
"chalk": "^4.1.2",
4646
"cosmiconfig": "^7.0.1",
4747
"debug": "^4.3.3",
48-
"globby": "^11.0.4",
48+
"globby": "^11.1.0",
4949
"ignore": "^5.2.0",
5050
"is-plain-obj": "^3.0.0",
5151
"jsonc-parser": "^3.0.0",
5252
"log-symbols": "^4.1.0",
53-
"meow": "^6.1.1",
53+
"meow": "^9.0.0",
5454
"plur": "^4.0.0",
5555
"semver": "^7.3.5",
5656
"slash": "^3.0.0",
@@ -70,7 +70,7 @@
7070
"eslint-formatter-pretty": "^4.1.0",
7171
"eslint-plugin-eslint-comments": "^3.2.0",
7272
"eslint-plugin-import": "^2.25.4",
73-
"eslint-plugin-jest": "^25.7.0",
73+
"eslint-plugin-jest": "^26.1.1",
7474
"eslint-plugin-prettier": "^4.0.0",
7575
"eslint-plugin-unicorn": "^41.0.0",
7676
"figures": "^3.2.0",

src/NpmPackageJsonLint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import isPlainObj from 'is-plain-obj';
22
import slash from 'slash';
33
import {PackageJson} from 'type-fest';
44
import {Config} from './Config';
5-
import {Rules} from './rules';
5+
import {Rules} from './Rules';
66
import {executeOnPackageJsonFiles, executeOnPackageJsonObject, OverallLintingResult} from './linter/linter';
77
import {getFileList} from './utils/getFileList';
88
import {getIgnorer} from './utils/getIgnorer';

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import chalk from 'chalk';
44
import meow from 'meow';
55
import {NpmPackageJsonLint} from './NpmPackageJsonLint';
6-
import {write} from './reporter';
6+
import {write} from './Reporter';
77

88
// eslint-disable-next-line @typescript-eslint/no-var-requires
99
const debug = require('debug')('npm-package-json-lint:cli');

0 commit comments

Comments
 (0)