babel-plugin-transform-amd-system-wrapper

WebJar for babel-plugin-transform-amd-system-wrapper

Лицензия

Лицензия

MIT
Категории

Категории

ORM Данные
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

babel-plugin-transform-amd-system-wrapper
Последняя версия

Последняя версия

0.3.7
Дата

Дата

Тип

Тип

jar
Описание

Описание

babel-plugin-transform-amd-system-wrapper
WebJar for babel-plugin-transform-amd-system-wrapper
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/systemjs/babel-plugin-transform-amd-system-wrapper

Скачать babel-plugin-transform-amd-system-wrapper

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/babel-plugin-transform-amd-system-wrapper/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>babel-plugin-transform-amd-system-wrapper</artifactId>
    <version>0.3.7</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/babel-plugin-transform-amd-system-wrapper/
implementation 'org.webjars.npm:babel-plugin-transform-amd-system-wrapper:0.3.7'
// https://jarcasting.com/artifacts/org.webjars.npm/babel-plugin-transform-amd-system-wrapper/
implementation ("org.webjars.npm:babel-plugin-transform-amd-system-wrapper:0.3.7")
'org.webjars.npm:babel-plugin-transform-amd-system-wrapper:jar:0.3.7'
<dependency org="org.webjars.npm" name="babel-plugin-transform-amd-system-wrapper" rev="0.3.7">
  <artifact name="babel-plugin-transform-amd-system-wrapper" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='babel-plugin-transform-amd-system-wrapper', version='0.3.7')
)
libraryDependencies += "org.webjars.npm" % "babel-plugin-transform-amd-system-wrapper" % "0.3.7"
[org.webjars.npm/babel-plugin-transform-amd-system-wrapper "0.3.7"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : babel-template jar [6.9.0,7)

Модули Проекта

Данный проект не имеет модулей.

babel-plugin-transform-amd-system-wrapper

Wraps AMD modules into System.registerDynamic(...

Example

In

define(['bar'], function(bar, require, module) {
  module.exports = {
	  bar: bar
  }
});

Babel Options

{
  plugins: [
    ['transform-amd-system-wrapper', {
      map: function(dep) {
        return dep;
      }
    }]
  ]
}

Out

System.registerDynamic(['bar'], false, function ($__require, $__exports, $__module) {
  'use strict';

  $__module.uri = $__module.id;
  return (function(bar, require, module) {
    module.exports = {
	  bar: bar
	}
  }).call(this, $__require('bar'), $__require, $__module);
});

Installation

$ npm install babel-plugin-transform-amd-system-wrapper

Usage

Via .babelrc

.babelrc

{
  "plugins": [
    ["transform-amd-system-wrapper", {
      "systemGlobal": "SystemJS",
      "filterMode": false,
      "deps": []
    }]
  ]
}

Via CLI

$ babel --plugins transform-amd-system-wrapper script.js

Via Node API (Recommended)

require("babel-core").transform("code", {
  plugins: [
    ["transform-amd-system-wrapper", {
      systemGlobal: "SystemJS", // Overwrites the default system global identifier. optional (default: 'System')
      filterMode: true, // Flag to disable the transformation process. Enables the filter mode to filter AMD dependencies which will be added to output.metadata.amdDeps. optional (default: false)
      esModule: true, // Indicates "__esModule" flag should be added to module if not already for named exports compatibility
      deps: [], // Array of additional dependencies to add to the registerDynamic dependencies array. optional (default: [])  
      map: function(dep) {
        return dep;
      } // Dependency mapping function hook. optional (default: identity)
    }]
  ]
});

Версии библиотеки

Версия
0.3.7