We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd9371 commit 4f4409bCopy full SHA for 4f4409b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "lightningcss-loader",
3
- "version": "2.0.0",
+ "version": "2.0.1",
4
"main": "dist/index.js",
5
"description": "Speed up your Webpack build with lightningcss",
6
"keywords": [
src/utils.ts
@@ -41,5 +41,5 @@ export const getTargets = (opts: {
41
env: process.env.NODE_ENV || 'production',
42
})
43
targetsCache[opts.key] = browserslistToTargets(result)
44
- return targetsCache
+ return (targetsCache[opts.key] = browserslistToTargets(result))
45
}
0 commit comments