swc-loader
Advanced tools
Comparing version 0.2.2 to 0.2.3
{ | ||
"name": "swc-loader", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "Webpack plugin for swc", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -9,3 +9,3 @@ const swc = require("@swc/core"); | ||
let loaderOptions = (this.getOptions ? this.getOptions() : require('loader-utils').getOptions(this)) || {}; | ||
let loaderOptions = (typeof this.getOptions === 'function' ? this.getOptions() : require('loader-utils').getOptions(this)) || {}; | ||
@@ -12,0 +12,0 @@ // Standardize on 'sourceMaps' as the key passed through to Webpack, so that |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7673