Socket
Socket
Sign inDemoInstall

stc-requirejs-bundle

Package Overview
Dependencies
5
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    stc-requirejs-bundle

bundle amd modules


Version published
Maintainers
1
Install size
2.35 MB
Created

Readme

Source

stc-requirejs-bundle

Combine amd modules

Install

npm install stc-requirejs-bundle

Usage

var requirejsBundle = require('stc-requirejs-bundle');

/** 
* @param include [optional]: files that you want to bundle
* @param baseUrl [optional]: identical with "baseUrl" in require.config
* @param commonModule [optional]: `path-moduleArray` pairs: 
* `path` are paths in which files will not have content of 
* `moduleArray` and content of `moduleArray`'s dependencies in the output.
* i.e. 'resource/js/mobile/index.js' will not have 'js/mobile/views/indexView' content in the output file, 
* even it depends on 'js/mobile/views/indexView'
* in that case, you need to include 'js/mobile/views/indexView' in your html manually.
**/
stc.workflow({
  requirejsBundle: {
    plugin: requirejsBundle, 
    include: 'resource/js/mobile/index.js', 
    options: {
      baseUrl: 'resource/',
      commonModule: {
        'resource/js/mobile/': [
          'js/mobile/views/indexView'
        ]
      }
    }
  },
});

FAQs

Last updated on 17 Aug 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc