معرفی شرکت ها


broccoli-es6-module-transpiler-0.5.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Broccoli plugin for Square's ES6 Module Transpiler
ویژگی مقدار
سیستم عامل -
نام فایل broccoli-es6-module-transpiler-0.5.0
نام broccoli-es6-module-transpiler
نسخه کتابخانه 0.5.0
نگهدارنده ['mmun', 'rwjblue', 'ericf']
ایمیل نگهدارنده ['im.mmun@gmail.com', 'robert.w.jackson@me.com', 'eferraiuolo@gmail.com']
نویسنده Martin Muñoz
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/mmun/broccoli-es6-module-transpiler.git
آدرس اینترنتی https://github.com/mmun/broccoli-es6-module-transpiler
مجوز MIT
# Broccoli's ES6 Module Transpiler [![Build Status](https://travis-ci.org/mmun/broccoli-es6-module-transpiler.svg?branch=tests)](https://travis-ci.org/mmun/broccoli-es6-module-transpiler) A Broccoli plugin that transpiles ES6 modules to other module types using **Square's [es6-module-transpiler][transpiler]**. **Note:** The `es6-module-transpiler` package underwent a major refactor _after_ `v0.4.0`, the previous version of this package that works with the older transpiler is available on the [`transpiler-0.4` branch][prev-version]. ## Usage ### Transpiling to CommonJS ```javascript var compileModules = require('broccoli-es6-module-transpiler'); var transpiledLib = compileModules(lib, { formatter: 'commonjs' }); ``` ### Transpiling to Bundle Format The bundle format is perfect for packaging your app's modules into one file that can be loaded in the browser _without_ needing a module loader. ```javascript var compileModules = require('broccoli-es6-module-transpiler'); var transpiledLib = compileModules(lib, { formatter: 'bundle', output : 'app.js' }); ``` **Note:** The `output` option has a specified value to tell the transpiler where to output the new JavaScript file that contains the bundled transpiled modules. An `output` value is required when using the Bundle Format. ### Transpiling to AMD The latest version of Square's [transpiler][] is flexible and pluggable, and while it doesn't ship with AMD support built-in you can use the AMD formatter: [es6-module-transpiler-amd-formatter][amd-formatter]. ```javascript var compileModules = require('broccoli-es6-module-transpiler'); var AMDFormatter = require('es6-module-transpiler-amd-formatter'); var transpiledLib = compileModules(lib, { formatter: new AMDFormatter() }); ``` ## Documentation ### `compileModules(inputTree, [options])` --- `options.formatter` *{String | Object}* The formatter instance or built-in name to use to transpile the modules. Built-in formatters: `bundle`, `commonjs`. Default: `bundle`. --- `options.resolvers` *{Array}* An array of resolver classes used to resolve modules to their source code. Default: `[ FileResolver ]`. --- `options.output` *{String}* The path where the transpiler should output the transpiled modules to. For formatters that output one file per module, this should be a directory, while formatters like the Bundle Format require a value for this option and it must be a file path. Default: `"."`. --- `options.basePath` *{String}* The path used to resolve the transpiled modules' source paths against. The resolved path will then serve as the `sourceFileName` value for the module in the output file's source map. Default: `srcDir`. --- `options.sourceRoot` *{String}* The path to use as the `sourceRoot` value in the output file's source map. Default: `"/"`. [transpiler]: https://github.com/esnext/es6-module-transpiler [prev-version]: https://github.com/mmun/broccoli-es6-module-transpiler/tree/transpiler-0.4 [amd-formatter]: https://github.com/caridy/es6-module-transpiler-amd-formatter


نیازمندی

مقدار نام
^0.2.5 broccoli-kitchen-sink-helpers
^0.1.1 broccoli-writer
^0.9.5 es6-module-transpiler
^0.5.0 mkdirp
^0.1.2 quick-temp
^1.0.0 symlink-or-copy
^0.1.3 walk-sync


نحوه نصب


نصب پکیج tgz broccoli-es6-module-transpiler-0.5.0:

    npm install broccoli-es6-module-transpiler-0.5.0.tgz