deamdify

WebJar for deamdify

Лицензия

Лицензия

MIT
Группа

Группа

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

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

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

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

0.1.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

deamdify
WebJar for deamdify
Ссылка на сайт

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

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

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

https://github.com/jaredhanson/deamdify

Скачать deamdify

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

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

Зависимости

compile (4)

Идентификатор библиотеки Тип Версия
org.webjars.npm : through jar [2,3)
org.webjars.npm : esprima jar [1,2)
org.webjars.npm : estraverse jar [1,2)
org.webjars.npm : escodegen jar [0.0,0.1)

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

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

deAMDify

Build Status David DM

This module is a browserify plugin that will transform AMD modules into Node.js-style modules so that they can be included in browser-ified bundles.

With this transform in place, Node and AMD modules can be freely intermixed, and the resulting bundle can be used without the need for a separate loader such as RequireJS.

For when you're stuck and need help:

Join the chat at https://gitter.im/jaredhanson/deamdify

Install

$ npm install deamdify

Usage

Command Line

Bundle up all required modules, including AMD modules, into a single file using browserify with the deamdify transform.

browserify -t deamdify main.js -o bundle.js

API

var browserify = require('browserify');
var fs = require('fs');

var b = browserify('main.js');
b.transform('deamdify');

b.bundle().pipe(fs.createWriteStream('bundle.js'));

package.json

For packages that are written as AMD modules, add a browserify transform field to package.json and browserify will apply the transform to all modules in the package as it builds a bundle.

{
  "name": "anchor",
  "main": "main",
  "browserify": {
    "transform": "deamdify"
  }
}

Tests

$ npm install
# fast run
$ npm run test-main
# test all browserify major versions
$ npm test

Credits

License

The MIT License

Copyright (c) 2015 Jared Hanson <http://jaredhanson.net/>

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

Версия
0.1.1