Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-flow-strip-types

Package Overview
Dependencies
Maintainers
4
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-flow-strip-types - npm Package Compare versions

Comparing version 7.22.5 to 8.0.0-alpha.0

37

lib/index.js

@@ -1,11 +0,6 @@

"use strict";
import { declare } from '@babel/helper-plugin-utils';
import syntaxFlow from '@babel/plugin-syntax-flow';
import { types } from '@babel/core';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _pluginSyntaxFlow = require("@babel/plugin-syntax-flow");
var _core = require("@babel/core");
var _default = (0, _helperPluginUtils.declare)((api, opts) => {
var index = declare((api, opts) => {
api.assertVersion(7);

@@ -17,10 +12,5 @@ const FLOW_DIRECTIVE = /(@flow(\s+(strict(-local)?|weak))?|@noflow)/;

} = opts;
{
var {
allowDeclareFields = false
} = opts;
}
return {
name: "transform-flow-strip-types",
inherits: _pluginSyntaxFlow.default,
inherits: syntaxFlow,
visitor: {

@@ -84,16 +74,5 @@ Program(path, {

} = child;
{
if (!allowDeclareFields && node.declare) {
throw child.buildCodeFrameError(`The 'declare' modifier is only allowed when the ` + `'allowDeclareFields' option of ` + `@babel/plugin-transform-flow-strip-types or ` + `@babel/preset-flow is enabled.`);
}
}
if (node.declare) {
child.remove();
} else {
{
if (!allowDeclareFields && !node.value && !node.decorators) {
child.remove();
return;
}
}
node.variance = null;

@@ -129,3 +108,3 @@ node.typeAnnotation = null;

}
if (!_core.types.isMethod(node)) {
if (!types.isMethod(node)) {
node.predicate = null;

@@ -141,3 +120,3 @@ }

node = node.expression;
} while (_core.types.isTypeCastExpression(node));
} while (types.isTypeCastExpression(node));
path.replaceWith(node);

@@ -166,4 +145,4 @@ },

});
exports.default = _default;
export { index as default };
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-flow-strip-types",
"version": "7.22.5",
"version": "8.0.0-alpha.0",
"description": "Strip flow type annotations from your output code.",

@@ -20,17 +20,21 @@ "repository": {

"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-syntax-flow": "^7.22.5"
"@babel/helper-plugin-utils": "^8.0.0-alpha.0",
"@babel/plugin-syntax-flow": "^8.0.0-alpha.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
"@babel/core": "^8.0.0-alpha.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/helper-plugin-test-runner": "^7.22.5"
"@babel/core": "^8.0.0-alpha.0",
"@babel/helper-plugin-test-runner": "^8.0.0-alpha.0"
},
"engines": {
"node": ">=6.9.0"
"node": "^16.20.0 || ^18.16.0 || >=20.0.0"
},
"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"type": "module"
}

@@ -5,3 +5,3 @@ # @babel/plugin-transform-flow-strip-types

See our website [@babel/plugin-transform-flow-strip-types](https://babeljs.io/docs/en/babel-plugin-transform-flow-strip-types) for more information.
See our website [@babel/plugin-transform-flow-strip-types](https://babeljs.io/docs/babel-plugin-transform-flow-strip-types) for more information.

@@ -8,0 +8,0 @@ ## Install

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc