-
Notifications
You must be signed in to change notification settings - Fork 78
Conversation
New dependencies added: @babel/coreAuthor: Sebastian McKenzie Description: Babel compiler core. Homepage: https://babeljs.io/
|
Created | about 1 year ago |
Last Updated | 8 days ago |
License | MIT |
Maintainers | 5 |
Releases | 37 |
Direct Dependencies | @babel/helper-create-class-features-plugin and @babel/helper-plugin-utils |
Keywords | babel-plugin |
README
@babel/plugin-proposal-class-properties
This plugin transforms static class properties as well as properties declared with the property initializer syntax
See our website @babel/plugin-proposal-class-properties for more information.
Install
Using npm:
npm install --save-dev @babel/plugin-proposal-class-properties
or using yarn:
yarn add @babel/plugin-proposal-class-properties --dev
@babel/plugin-proposal-decorators
Author: Logan Smyth
Description: Compile class and object decorators to ES5
Homepage: http://npmjs.com/package/@babel/plugin-proposal-decorators
Created | about 1 year ago |
Last Updated | 9 days ago |
License | MIT |
Maintainers | 5 |
Releases | 39 |
Direct Dependencies | @babel/helper-plugin-utils , @babel/helper-replace-supers , @babel/helper-split-export-declaration and @babel/plugin-syntax-decorators |
Keywords | babel, babel-plugin and decorators |
README
@babel/plugin-proposal-decorators
Compile class and object decorators to ES5
See our website @babel/plugin-proposal-decorators for more information.
Install
Using npm:
npm install --save-dev @babel/plugin-proposal-decorators
or using yarn:
yarn add @babel/plugin-proposal-decorators --dev
@babel/plugin-transform-runtime
Author: Unknown
Description: Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals
Homepage: http://npmjs.com/package/@babel/plugin-transform-runtime
Created | about 1 year ago |
Last Updated | 9 days ago |
License | MIT |
Maintainers | 5 |
Releases | 36 |
Direct Dependencies | @babel/helper-module-imports , @babel/helper-plugin-utils , resolve and semver |
Keywords | babel-plugin |
README
@babel/plugin-transform-runtime
Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals
See our website @babel/plugin-transform-runtime for more information.
Install
Using npm:
npm install --save-dev @babel/plugin-transform-runtime
or using yarn:
yarn add @babel/plugin-transform-runtime --dev
@babel/preset-typescript
Author: Unknown
Description: Babel preset for TypeScript.
Homepage: http://npmjs.com/package/@babel/preset-typescript
Created | about 1 year ago |
Last Updated | 29 days ago |
License | MIT |
Maintainers | 5 |
Releases | 35 |
Direct Dependencies | @babel/helper-plugin-utils and @babel/plugin-transform-typescript |
Keywords | babel-preset and typescript |
README
@babel/preset-typescript
Babel preset for TypeScript.
See our website @babel/preset-typescript for more information or the issues associated with this package.
Install
Using npm:
npm install --save-dev @babel/preset-typescript
or using yarn:
yarn add @babel/preset-typescript --dev
@babel/runtime
Author: Sebastian McKenzie
Description: babel's modular runtime helpers
Homepage: http://npmjs.com/package/@babel/runtime
Created | about 1 year ago |
Last Updated | 9 days ago |
License | MIT |
Maintainers | 5 |
Releases | 38 |
Direct Dependencies | regenerator-runtime |
README
@babel/runtime
babel's modular runtime helpers
See our website @babel/runtime for more information.
Install
Using npm:
npm install --save-dev @babel/runtime
or using yarn:
yarn add @babel/runtime --dev
babel-core
Author: Sebastian McKenzie
Description: Babel compiler core.
Homepage: https://babeljs.io/
Created | almost 4 years ago |
Last Updated | 2 months ago |
License | MIT |
Maintainers | 4 |
Releases | 257 |
Direct Dependencies | babel-code-frame , babel-generator , babel-helpers , babel-messages , babel-register , babel-runtime , babel-template , babel-traverse , babel-types , babylon , convert-source-map , debug , json5 , lodash , minimatch , path-is-absolute , private , slash and source-map |
Keywords | 6to5, babel, classes, const, es6, harmony, let, modules, transpile, transpiler, var, babel-core and compiler |
README
babel-core
Babel compiler core.
var babel = require("babel-core");
import { transform } from 'babel-core';
import * as babel from 'babel-core';
All transformations will use your local configuration files (.babelrc or in package.json). See options to disable it.
babel.transform(code: string, options?: Object)
Transforms the passed in code
. Returning an object with the generated code,
source map, and AST.
babel.transform(code, options) // => { code, map, ast }
Example
var result = babel.transform("code();", options);
result.code;
result.map;
result.ast;
babel.transformFile(filename: string, options?: Object, callback: Function)
Asynchronously transforms the entire contents of a file.
babel.transformFile(filename, options, callback)
Example
babel.transformFile("filename.js", options, function (err, result) {
result; // => { code, map, ast }
});
babel.transformFileSync(filename: string, options?: Object)
Synchronous version of babel.transformFile
. Returns the transformed contents of
the filename
.
babel.transformFileSync(filename, options) // => { code, map, ast }
Example
babel.transformFileSync("filename.js", options).code;
babel.transformFromAst(ast: Object, code?: string, options?: Object)
Given, an AST, transform it.
const code = "if (true) return;";
const ast = babylon.parse(code, { allowReturnOutsideFunction: true });
const { code, map, ast } = babel.transformFromAst(ast, code, options);
Options
Babel CLI
You can pass these options from the Babel CLI like so:
babel --name=value
Following is a table of the options you can use:
Option | Default | Description |
---|---|---|
ast |
true |
Include the AST in the returned object |
auxiliaryCommentAfter |
null |
Attach a comment after all non-user injected code. |
auxiliaryCommentBefore |
null |
Attach a comment before all non-user injected code. |
babelrc |
true |
Specify whether or not to use .babelrc and .babelignore files. Not available when using the CLI, use --no-babelrc instead. |
code |
true |
Enable code generation |
comments |
true |
Output comments in generated output. |
compact |
"auto" |
Do not include superfluous whitespace characters and line terminators. When set to "auto" compact is set to true on input sizes of >500KB. |
env |
{} |
This is an object of keys that represent different environments. For example, you may have: { env: { production: { /* specific options */ } } } which will use those options when the environment variable BABEL_ENV is set to "production" . If BABEL_ENV isn't set then NODE_ENV will be used, if it's not set then it defaults to "development" |
extends |
null |
A path to an .babelrc file to extend |
filename |
"unknown" |
Filename for use in errors etc. |
filenameRelative |
(filename) |
Filename relative to sourceRoot . |
generatorOpts |
{} |
An object containing the options to be passed down to the babel code generator, babel-generator |
getModuleId |
null |
Specify a custom callback to generate a module id with. Called as getModuleId(moduleName) . If falsy value is returned then the generated module id is used. |
highlightCode |
true |
ANSI highlight syntax error code frames |
ignore |
null |
Opposite to the only option. ignore is disregarded if only is specified. |
inputSourceMap |
null |
A source map object that the output source map will be based on. |
minified |
false |
Should the output be minified (not printing last semicolons in blocks, printing literal string values instead of escaped ones, stripping () from new when safe) |
moduleId |
null |
Specify a custom name for module ids. |
moduleIds |
false |
If truthy, insert an explicit id for modules. By default, all modules are anonymous. (Not available for common modules) |
moduleRoot |
(sourceRoot) |
Optional prefix for the AMD module formatter that will be prepend to the filename on module definitions. |
only |
null |
A glob, regex, or mixed array of both, matching paths to only compile. Can also be an array of arrays containing paths to explicitly match. When attempting to compile a non-matching file it's returned verbatim. |
parserOpts |
{} |
An object containing the options to be passed down to the babel parser, babylon |
plugins |
[] |
List of plugins to load and use. |
presets |
[] |
List of presets (a set of plugins) to load and use. |
retainLines |
false |
Retain line numbers. This will lead to wacky code but is handy for scenarios where you can't use source maps. (NOTE: This will not retain the columns) |
resolveModuleSource |
null |
Resolve a module source ie. import "SOURCE"; to a custom value. Called as resolveModuleSource(source, filename) . |
shouldPrintComment |
null |
An optional callback that controls whether a comment should be output or not. Called as shouldPrintComment(commentContents) . NOTE: This overrides the comment option when used. |
sourceFileName |
(filenameRelative) |
Set sources[0] on returned source map. |
sourceMaps |
false |
If truthy, adds a map property to returned output. If set to "inline" , a comment with a sourceMappingURL directive is added to the bottom of the returned code. If set to "both" then a map property is returned as well as a source map comment appended. This does not emit sourcemap files by itself! To have sourcemaps emitted using the CLI, you must pass it the --source-maps option. |
sourceMapTarget |
(filenameRelative) |
Set file on returned source map. |
sourceRoot |
(moduleRoot) |
The root from which all sources are relative. |
sourceType |
"module" |
Indicate the mode the code should be parsed in. Can be either "script" or "module". |
wrapPluginVisitorMethod |
null |
An optional callback that can be used to wrap visitor methods. NOTE: This is useful for things like introspection, and not really needed for implementing anything. Called as wrapPluginVisitorMethod(pluginAlias, visitorType, callback) . |
metro-react-native-babel-preset
Author: Unknown
Description: Babel preset for React Native applications
Homepage: https://github.com/facebook/metro#readme
README
metro-react-native-babel-preset
Babel presets for React Native applications. React Native itself uses this Babel preset by default when transforming your app's source code.
If you wish to use a custom Babel configuration by writing a .babelrc
file in your project's root directory, you must specify all the plugins necessary to transform your code. React Native does not apply its default Babel configuration in this case. So, to make your life easier, you can use this preset to get the default configuration and then specify more plugins that run before it.
Usage
As mentioned above, you only need to use this preset if you are writing a custom .babelrc
file.
Installation
Install metro-react-native-babel-preset
in your app:
npm i metro-react-native-babel-preset --save-dev
Configuring Babel
Then, create a file called .babelrc
in your project's root directory. The existence of this .babelrc
file will tell React Native to use your custom Babel configuration instead of its own. Then load this preset:
{
"presets": ["module:metro-react-native-babel-preset"]
}
You can further customize your Babel configuration by specifying plugins and other options. See Babel's .babelrc
documentation to learn more.
Help and Support
If you get stuck configuring Babel, please ask a question on Stack Overflow or find a consultant for help. If you discover a bug, please open up an issue.
Generated by 🚫 dangerJS
Does this support |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exciting!
@@ -111,10 +111,13 @@ export class Conversations extends Component<Props, State> { | |||
keyExtractor={(_item, index) => String(index)} | |||
scrollEventThrottle={500} | |||
renderItem={({ item }) => { | |||
// TODO: What is up with this `as any`? | |||
// there's a type mismatch here, as item above is a `ConversationSnippetProps` | |||
// but conversation is a `ConversationSnippet_conversation` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Btw, in that example Props["me"]
is equal to Conversations_me
, I go back and forth on what way to use 🤔
No, because it uses Babel for transpiration - see |
👋 So, what can I do to help move this along? It's caused an issue where we've had to pin react-spring and that same issue is blocking us from upgrading to styled-components 4. |
we got further on this, looking like right now we're somewhat blocked on jest mocking a decorator. We were seeing "decorator is not a function" from "_applyDecoratedDescriptor" in babel/runtime, which is the tracking function inside a component. Unmocking To continue, start by looking at either:
|
This PR will also fix: https://artsyproduct.atlassian.net/browse/TUDI-16 |
New dependencies added: @babel/plugin-proposal-class-propertiesAuthor: Unknown Description: This plugin transforms static class properties as well as properties declared with the property initializer syntax Homepage: http://npmjs.com/package/@babel/plugin-proposal-class-properties
|
Created | over 1 year ago |
Last Updated | 1 day ago |
License | MIT |
Maintainers | 5 |
Releases | 43 |
Direct Dependencies | @babel/helper-create-class-features-plugin , @babel/helper-plugin-utils and @babel/plugin-syntax-decorators |
Keywords | babel, babel-plugin and decorators |
README
@babel/plugin-proposal-decorators
Compile class and object decorators to ES5
See our website @babel/plugin-proposal-decorators for more information.
Install
Using npm:
npm install --save-dev @babel/plugin-proposal-decorators
or using yarn:
yarn add @babel/plugin-proposal-decorators --dev
@babel/plugin-transform-runtime
Author: Unknown
Description: Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals
Homepage: http://npmjs.com/package/@babel/plugin-transform-runtime
Created | over 1 year ago |
Last Updated | 1 day ago |
License | MIT |
Maintainers | 5 |
Releases | 38 |
Direct Dependencies | @babel/helper-module-imports , @babel/helper-plugin-utils , resolve and semver |
Keywords | babel-plugin |
README
@babel/plugin-transform-runtime
Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals
See our website @babel/plugin-transform-runtime for more information.
Install
Using npm:
npm install --save-dev @babel/plugin-transform-runtime
or using yarn:
yarn add @babel/plugin-transform-runtime --dev
@babel/preset-typescript
Author: Unknown
Description: Babel preset for TypeScript.
Homepage: http://npmjs.com/package/@babel/preset-typescript
Created | over 1 year ago |
Last Updated | about 1 month ago |
License | MIT |
Maintainers | 5 |
Releases | 36 |
Direct Dependencies | @babel/helper-plugin-utils and @babel/plugin-transform-typescript |
Keywords | babel-preset and typescript |
README
@babel/preset-typescript
Babel preset for TypeScript.
See our website @babel/preset-typescript for more information or the issues associated with this package.
Install
Using npm:
npm install --save-dev @babel/preset-typescript
or using yarn:
yarn add @babel/preset-typescript --dev
@babel/core
Author: Sebastian McKenzie
Description: Babel compiler core.
Homepage: https://babeljs.io/
Created | over 1 year ago |
Last Updated | 1 day ago |
License | MIT |
Maintainers | 5 |
Releases | 46 |
Direct Dependencies | @babel/code-frame , @babel/generator , @babel/helpers , @babel/parser , @babel/template , @babel/traverse , @babel/types , convert-source-map , debug , json5 , lodash , resolve , semver and source-map |
Keywords | 6to5, babel, classes, const, es6, harmony, let, modules, transpile, transpiler, var, babel-core and compiler |
README
@babel/core
Babel compiler core.
See our website @babel/core for more information or the issues associated with this package.
Install
Using npm:
npm install --save-dev @babel/core
or using yarn:
yarn add @babel/core --dev
@types/chalk
Author: Unknown
Description: Stub TypeScript definitions entry for chalk, which provides its own types definitions
Homepage: http://npmjs.com/package/@types/chalk
Created | almost 3 years ago |
Last Updated | over 1 year ago |
License | MIT |
Maintainers | 1 |
Releases | 14 |
Direct Dependencies | chalk |
README
This is a stub types definition for chalk (https://github.com/chalk/chalk).
chalk provides its own type definitions, so you don't need @types/chalk installed!
babel-core
Author: Sebastian McKenzie
Description: Babel compiler core.
Homepage: https://babeljs.io/
Created | about 4 years ago |
Last Updated | 3 months ago |
License | MIT |
Maintainers | 4 |
Releases | 257 |
Direct Dependencies | babel-code-frame , babel-generator , babel-helpers , babel-messages , babel-register , babel-runtime , babel-template , babel-traverse , babel-types , babylon , convert-source-map , debug , json5 , lodash , minimatch , path-is-absolute , private , slash and source-map |
Keywords | 6to5, babel, classes, const, es6, harmony, let, modules, transpile, transpiler, var, babel-core and compiler |
README
babel-core
Babel compiler core.
var babel = require("babel-core");
import { transform } from 'babel-core';
import * as babel from 'babel-core';
All transformations will use your local configuration files (.babelrc or in package.json). See options to disable it.
babel.transform(code: string, options?: Object)
Transforms the passed in code
. Returning an object with the generated code,
source map, and AST.
babel.transform(code, options) // => { code, map, ast }
Example
var result = babel.transform("code();", options);
result.code;
result.map;
result.ast;
babel.transformFile(filename: string, options?: Object, callback: Function)
Asynchronously transforms the entire contents of a file.
babel.transformFile(filename, options, callback)
Example
babel.transformFile("filename.js", options, function (err, result) {
result; // => { code, map, ast }
});
babel.transformFileSync(filename: string, options?: Object)
Synchronous version of babel.transformFile
. Returns the transformed contents of
the filename
.
babel.transformFileSync(filename, options) // => { code, map, ast }
Example
babel.transformFileSync("filename.js", options).code;
babel.transformFromAst(ast: Object, code?: string, options?: Object)
Given, an AST, transform it.
const code = "if (true) return;";
const ast = babylon.parse(code, { allowReturnOutsideFunction: true });
const { code, map, ast } = babel.transformFromAst(ast, code, options);
Options
Babel CLI
You can pass these options from the Babel CLI like so:
babel --name=value
Following is a table of the options you can use:
Option | Default | Description |
---|---|---|
ast |
true |
Include the AST in the returned object |
auxiliaryCommentAfter |
null |
Attach a comment after all non-user injected code. |
auxiliaryCommentBefore |
null |
Attach a comment before all non-user injected code. |
babelrc |
true |
Specify whether or not to use .babelrc and .babelignore files. Not available when using the CLI, use --no-babelrc instead. |
code |
true |
Enable code generation |
comments |
true |
Output comments in generated output. |
compact |
"auto" |
Do not include superfluous whitespace characters and line terminators. When set to "auto" compact is set to true on input sizes of >500KB. |
env |
{} |
This is an object of keys that represent different environments. For example, you may have: { env: { production: { /* specific options */ } } } which will use those options when the environment variable BABEL_ENV is set to "production" . If BABEL_ENV isn't set then NODE_ENV will be used, if it's not set then it defaults to "development" |
extends |
null |
A path to an .babelrc file to extend |
filename |
"unknown" |
Filename for use in errors etc. |
filenameRelative |
(filename) |
Filename relative to sourceRoot . |
generatorOpts |
{} |
An object containing the options to be passed down to the babel code generator, babel-generator |
getModuleId |
null |
Specify a custom callback to generate a module id with. Called as getModuleId(moduleName) . If falsy value is returned then the generated module id is used. |
highlightCode |
true |
ANSI highlight syntax error code frames |
ignore |
null |
Opposite to the only option. ignore is disregarded if only is specified. |
inputSourceMap |
null |
A source map object that the output source map will be based on. |
minified |
false |
Should the output be minified (not printing last semicolons in blocks, printing literal string values instead of escaped ones, stripping () from new when safe) |
moduleId |
null |
Specify a custom name for module ids. |
moduleIds |
false |
If truthy, insert an explicit id for modules. By default, all modules are anonymous. (Not available for common modules) |
moduleRoot |
(sourceRoot) |
Optional prefix for the AMD module formatter that will be prepend to the filename on module definitions. |
only |
null |
A glob, regex, or mixed array of both, matching paths to only compile. Can also be an array of arrays containing paths to explicitly match. When attempting to compile a non-matching file it's returned verbatim. |
parserOpts |
{} |
An object containing the options to be passed down to the babel parser, babylon |
plugins |
[] |
List of plugins to load and use. |
presets |
[] |
List of presets (a set of plugins) to load and use. |
retainLines |
false |
Retain line numbers. This will lead to wacky code but is handy for scenarios where you can't use source maps. (NOTE: This will not retain the columns) |
resolveModuleSource |
null |
Resolve a module source ie. import "SOURCE"; to a custom value. Called as resolveModuleSource(source, filename) . |
shouldPrintComment |
null |
An optional callback that controls whether a comment should be output or not. Called as shouldPrintComment(commentContents) . NOTE: This overrides the comment option when used. |
sourceFileName |
(filenameRelative) |
Set sources[0] on returned source map. |
sourceMaps |
false |
If truthy, adds a map property to returned output. If set to "inline" , a comment with a sourceMappingURL directive is added to the bottom of the returned code. If set to "both" then a map property is returned as well as a source map comment appended. This does not emit sourcemap files by itself! To have sourcemaps emitted using the CLI, you must pass it the --source-maps option. |
sourceMapTarget |
(filenameRelative) |
Set file on returned source map. |
sourceRoot |
(moduleRoot) |
The root from which all sources are relative. |
sourceType |
"module" |
Indicate the mode the code should be parsed in. Can be either "script" or "module". |
wrapPluginVisitorMethod |
null |
An optional callback that can be used to wrap visitor methods. NOTE: This is useful for things like introspection, and not really needed for implementing anything. Called as wrapPluginVisitorMethod(pluginAlias, visitorType, callback) . |
chalk
Author: Unknown
Description: Terminal string styling done right
Homepage: https://github.com/chalk/chalk#readme
Created | over 5 years ago |
Last Updated | 11 days ago |
License | MIT |
Maintainers | 2 |
Releases | 24 |
Direct Dependencies | ansi-styles , escape-string-regexp and supports-color |
Keywords | color, colour, colors, terminal, console, cli, string, str, ansi, style, styles, tty, formatting, rgb, 256, shell, xterm, log, logging, command-line and text |
jest-styled-components
Author: Michele Bertoli
Description: Jest utilities for Styled Components
Homepage: https://github.com/styled-components/jest-styled-components#readme
Created | about 2 years ago |
Last Updated | 3 months ago |
License | MIT |
Maintainers | 2 |
Releases | 86 |
Direct Dependencies | css |
metro-react-native-babel-preset
Author: Unknown
Description: Babel preset for React Native applications
Homepage: https://github.com/facebook/metro#readme
Created | 9 months ago |
Last Updated | 7 days ago |
License | MIT |
Maintainers | 1 |
Releases | 36 |
Direct Dependencies | @babel/plugin-proposal-class-properties , @babel/plugin-proposal-export-default-from , @babel/plugin-proposal-nullish-coalescing-operator , @babel/plugin-proposal-object-rest-spread , @babel/plugin-proposal-optional-catch-binding , @babel/plugin-proposal-optional-chaining , @babel/plugin-syntax-dynamic-import , @babel/plugin-syntax-export-default-from , @babel/plugin-syntax-flow , @babel/plugin-transform-arrow-functions , @babel/plugin-transform-block-scoping , @babel/plugin-transform-classes , @babel/plugin-transform-computed-properties , @babel/plugin-transform-destructuring , @babel/plugin-transform-exponentiation-operator , @babel/plugin-transform-flow-strip-types , @babel/plugin-transform-for-of , @babel/plugin-transform-function-name , @babel/plugin-transform-literals , @babel/plugin-transform-modules-commonjs , @babel/plugin-transform-object-assign , @babel/plugin-transform-parameters , @babel/plugin-transform-react-display-name , @babel/plugin-transform-react-jsx , @babel/plugin-transform-react-jsx-source , @babel/plugin-transform-regenerator , @babel/plugin-transform-runtime , @babel/plugin-transform-shorthand-properties , @babel/plugin-transform-spread , @babel/plugin-transform-sticky-regex , @babel/plugin-transform-template-literals , @babel/plugin-transform-typescript , @babel/plugin-transform-unicode-regex , @babel/template , metro-babel7-plugin-react-transform and react-transform-hmr |
Keywords | babel, preset and react-native |
README
metro-react-native-babel-preset
Babel presets for React Native applications. React Native itself uses this Babel preset by default when transforming your app's source code.
If you wish to use a custom Babel configuration by writing a .babelrc
file in your project's root directory, you must specify all the plugins necessary to transform your code. React Native does not apply its default Babel configuration in this case. So, to make your life easier, you can use this preset to get the default configuration and then specify more plugins that run before it.
Usage
As mentioned above, you only need to use this preset if you are writing a custom .babelrc
file.
Installation
Install metro-react-native-babel-preset
in your app:
npm i metro-react-native-babel-preset --save-dev
Configuring Babel
Then, create a file called .babelrc
in your project's root directory. The existence of this .babelrc
file will tell React Native to use your custom Babel configuration instead of its own. Then load this preset:
{
"presets": ["module:metro-react-native-babel-preset"]
}
You can further customize your Babel configuration by specifying plugins and other options. See Babel's .babelrc
documentation to learn more.
Help and Support
If you get stuck configuring Babel, please ask a question on Stack Overflow or find a consultant for help. If you discover a bug, please open up an issue.
@babel/runtime
Author: Sebastian McKenzie
Description: babel's modular runtime helpers
Homepage: http://npmjs.com/package/@babel/runtime
Created | over 1 year ago |
Last Updated | about 3 hours ago |
License | MIT |
Maintainers | 5 |
Releases | 43 |
Direct Dependencies | regenerator-runtime |
README
@babel/runtime
babel's modular runtime helpers
See our website @babel/runtime for more information.
Install
Using npm:
npm install --save @babel/runtime
or using yarn:
yarn add @babel/runtime
Closing this in favor of #1551 |
Re: LD-22
This is just step 1, the module + types but it's momentum. Will keep working on this branch.
Step 2 is done: having it run.