Skip to content

Commit e826cfe

Browse files
Fix css path resolution bug
1 parent 7cd0787 commit e826cfe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module.exports.prepareFile = async (file, compiler, compilation) => {
7474

7575
getKeys(file.content[name].css).forEach(cssGroup => {
7676
getKeys(file.content[name].css[cssGroup]).forEach(cssFile => {
77-
replaceEntry(file.content[name][cssGroup], cssFile)
77+
replaceEntry(file.content[name].css[cssGroup], cssFile)
7878
})
7979
})
8080
})

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "drupal-libraries-webpack-plugin",
33
"description": "Generates a Drupal asset library file for a webpack build.",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"main": "index.js",
66
"scripts": {
77
"test": "jest",

0 commit comments

Comments
 (0)