babel-plugin-transform-inline-environment-variables
Advanced tools
Comparing version 0.5.0-alpha.7b176463 to 0.5.0-alpha.b4285271
"use strict"; | ||
module.exports = function (_ref) { | ||
var t = _ref.types; | ||
module.exports = function ({ | ||
types: t | ||
}) { | ||
return { | ||
name: "transform-inline-environment-variables", | ||
visitor: { | ||
MemberExpression(path, _ref2) { | ||
var _ref2$opts = _ref2.opts; | ||
_ref2$opts = _ref2$opts === void 0 ? {} : _ref2$opts; | ||
var include = _ref2$opts.include, | ||
exclude = _ref2$opts.exclude; | ||
MemberExpression(path, { | ||
opts: { | ||
include, | ||
exclude | ||
} = {} | ||
}) { | ||
if (path.get("object").matchesPattern("process.env")) { | ||
var key = path.toComputedKey(); | ||
const key = path.toComputedKey(); | ||
@@ -17,0 +18,0 @@ if (t.isStringLiteral(key) && (!include || include.indexOf(key.value) !== -1) && (!exclude || exclude.indexOf(key.value) === -1)) { |
{ | ||
"name": "babel-plugin-transform-inline-environment-variables", | ||
"version": "0.5.0-alpha.7b176463", | ||
"version": "0.5.0-alpha.b4285271", | ||
"description": "Inline environment variables.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
22
2074