babel-plugin-transform-inline-environment-variables
Advanced tools
Comparing version 0.3.0-alpha.5ee3078e to 0.3.0-alpha.636ae276
"use strict"; | ||
module.exports = function ({ types: t }) { | ||
module.exports = function (_ref) { | ||
var t = _ref.types; | ||
return { | ||
name: "transform-inline-environment-variables", | ||
visitor: { | ||
MemberExpression(path, { opts: { include, exclude } = {} }) { | ||
MemberExpression(path, _ref2) { | ||
var _ref2$opts = _ref2.opts; | ||
_ref2$opts = _ref2$opts === undefined ? {} : _ref2$opts; | ||
var include = _ref2$opts.include, | ||
exclude = _ref2$opts.exclude; | ||
if (path.get("object").matchesPattern("process.env")) { | ||
const key = path.toComputedKey(); | ||
var key = path.toComputedKey(); | ||
if (t.isStringLiteral(key) && (!include || include.indexOf(key.value) !== -1) && (!exclude || exclude.indexOf(key.value) === -1)) { | ||
@@ -11,0 +18,0 @@ path.replaceWith(t.valueToNode(process.env[key.value])); |
{ | ||
"name": "babel-plugin-transform-inline-environment-variables", | ||
"version": "0.3.0-alpha.5ee3078e", | ||
"version": "0.3.0-alpha.636ae276", | ||
"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
2197
20