Skip to content

Commit b618ce3

Browse files
committed
chore: update package.json
1 parent f0d91a5 commit b618ce3

File tree

4 files changed

+39
-12
lines changed

4 files changed

+39
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,18 @@ Typescript migration:
7878
Before:
7979

8080
```ts
81-
declare module '*.module.css' {
82-
const classes: { [key: string]: string };
81+
declare module "*.module.css" {
82+
const classes: Record<string, string>;
83+
8384
export default classes;
8485
}
8586
```
8687

8788
After:
8889

8990
```ts
90-
declare module '*.module.css' {
91-
const classes: { [key: string]: string };
91+
declare module "*.module.css" {
92+
const classes: Record<string, string>;
9293
export = classes;
9394
}
9495
```

package-lock.json

Lines changed: 30 additions & 5 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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"@babel/preset-env": "^7.25.3",
6363
"@commitlint/cli": "^19.3.0",
6464
"@commitlint/config-conventional": "^19.2.2",
65-
"@eslint/markdown": "^6.6.0",
65+
"@eslint/markdown": "^7.0.0",
6666
"@stylistic/eslint-plugin": "^5.1.0",
6767
"@typescript-eslint/eslint-plugin": "^8.37.0",
6868
"@typescript-eslint/parser": "^8.37.0",
@@ -73,7 +73,7 @@
7373
"es-check": "^7.2.1",
7474
"eslint": "^9.30.1",
7575
"eslint-config-prettier": "^10.1.5",
76-
"eslint-config-webpack": "^4.3.0",
76+
"eslint-config-webpack": "^4.3.2",
7777
"eslint-plugin-import": "^2.32.0",
7878
"eslint-plugin-jest": "^29.0.1",
7979
"eslint-plugin-jsdoc": "^51.4.1",
@@ -100,6 +100,7 @@
100100
"style-loader": "^3.3.4",
101101
"stylus": "^0.63.0",
102102
"stylus-loader": "^8.1.0",
103+
"typescript-eslint": "^8.37.0",
103104
"url-loader": "^4.1.1",
104105
"webpack": "^5.93.0"
105106
},

test/url-option.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ describe('"url" option', () => {
541541
expect(getErrors(stats)).toMatchSnapshot("errors");
542542
});
543543

544-
it.skip("should work with the 'IgnorePlugin' plugin", async () => {
544+
it("should work with the 'IgnorePlugin' plugin", async () => {
545545
const compiler = getCompiler(
546546
"./url/ignore-plugin.js",
547547
{},

0 commit comments

Comments
 (0)