معرفی شرکت ها


grunt-global-wrap-1.1.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Grunt task to expose your CommonJS-based libraries as a global.
ویژگی مقدار
سیستم عامل -
نام فایل grunt-global-wrap-1.1.0
نام grunt-global-wrap
نسخه کتابخانه 1.1.0
نگهدارنده ['domenic']
ایمیل نگهدارنده ['domenic@domenicdenicola.com']
نویسنده Domenic Denicola
ایمیل نویسنده domenic@domenicdenicola.com
آدرس صفحه اصلی git://github.com/domenic/grunt-global-wrap.git
آدرس اینترنتی -
مجوز -
# Global-ify Your CommonJS, via Grunt This is a [Grunt](http://gruntjs.com/) plugin to expose your CommonJS libraries as globals on `window`. It allows you to produce build artifiacts that are readily usable by people who haven't embraced the magnificence of [browserify](https://github.com/substack/node-browserify). You point it at your main module, and it exposes that as a specified property of the global, bundling up everything it requires (including any native module shims) into the output file. It's based on [global-wrap](https://npmjs.org/package/global-wrap), if you want this functionality outside of a Grunt plugin. ## Usage It takes four options, three of which are required: - `main`: the file path of your main module, which you want to expose as a global. - `global`: the name of the global you want to expose. - `dest`: the place where your new global-exposing file should be written. - `bundleOptions`: any browserify [bundle options](https://github.com/substack/node-browserify#bbundleopts-cb) you want to pass along, like `debug` or `detectGlobals`. This is the optional option. Here's a quick sample: ```js grunt.loadNpmTasks("grunt-global-wrap"); grunt.initConfig({ globalwrap: { releaseArtifactsTarget: { main: "my-main-module.js", global: "myModule", dest: "release/my-module.global.js", bundleOptions: { debug: true } } } }); ```


نیازمندی

مقدار نام
>=1.2.0 <2 global-wrap


نحوه نصب


نصب پکیج tgz grunt-global-wrap-1.1.0:

    npm install grunt-global-wrap-1.1.0.tgz