Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Jan 16, 2024
1 parent 2ace9cc commit d5cf9d1
Show file tree
Hide file tree
Showing 20 changed files with 3,692 additions and 2,271 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ type importFn =
media: string,
resourcePath: string,
supports?: string,
layer?: string
layer?: string,
) => boolean;
};
```
Expand Down Expand Up @@ -315,7 +315,7 @@ type modules =
getLocalIdent: (
context: LoaderContext,
localIdentName: string,
localName: string
localName: string,
) => string;
namedExport: boolean;
exportGlobals: boolean;
Expand Down Expand Up @@ -1072,7 +1072,7 @@ Type:
type getLocalIdent = (
context: LoaderContext,
localIdentName: string,
localName: string
localName: string,
) => string;
```

Expand Down Expand Up @@ -1309,7 +1309,7 @@ module.exports = {
name.replace(/-/g, "_"),
// dashesCamelCase
name.replace(/-+(\w)/g, (match, firstLetter) =>
firstLetter.toUpperCase()
firstLetter.toUpperCase(),
),
];
},
Expand Down Expand Up @@ -1746,7 +1746,8 @@ With the help of the `/* webpackIgnore: true */`comment, it is possible to disab
.class {
/* Disabled url handling for the second url in the 'background' declaration */
color: red;
background: url("./url/img.png"),
background:
url("./url/img.png"),
/* webpackIgnore: true */ url("./url/img.png");
}

Expand Down Expand Up @@ -1880,7 +1881,7 @@ module.exports = {
alias: {
"/assets/unresolved/img.png": path.resolve(
__dirname,
"assets/real-path-to-img/img.png"
"assets/real-path-to-img/img.png",
),
},
},
Expand Down

0 comments on commit d5cf9d1

Please sign in to comment.