@swc-node/core
Advanced tools
Comparing version 0.1.11 to 0.1.12
@@ -38,3 +38,3 @@ const { platform } = require('os') | ||
}, | ||
sourceMaps: opts.sourcemap, | ||
sourceMaps: typeof opts.sourcemap === 'undefined' ? true : opts.sourcemap, | ||
} | ||
@@ -63,3 +63,3 @@ return bindings.transformSync(source, path, Buffer.from(JSON.stringify(swcOptions))) | ||
}, | ||
sourceMaps: opts.sourcemap, | ||
sourceMaps: typeof opts.sourcemap === 'undefined' ? true : opts.sourcemap, | ||
} | ||
@@ -66,0 +66,0 @@ return bindings.transformSync(source, path, Buffer.from(JSON.stringify(swcOptions))) |
{ | ||
"name": "@swc-node/core", | ||
"version": "0.1.11", | ||
"version": "0.1.12", | ||
"description": "Faster swc nodejs binding", | ||
@@ -59,8 +59,8 @@ "keywords": [ | ||
}, | ||
"gitHead": "2fc98ebe7747ff5158700c94b19516034c97af4a", | ||
"gitHead": "ded23efe52b1dcce474e7ec0163ee77b77371181", | ||
"optionalDependencies": { | ||
"@swc-node/core-darwin": "^0.1.11", | ||
"@swc-node/core-linux": "^0.1.11", | ||
"@swc-node/core-win32": "^0.1.11" | ||
"@swc-node/core-darwin": "^0.1.12", | ||
"@swc-node/core-linux": "^0.1.12", | ||
"@swc-node/core-win32": "^0.1.12" | ||
} | ||
} |
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
5782