Socket
Socket
Sign inDemoInstall

stc-requirejs-bundle

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stc-requirejs-bundle

bundle amd modules


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 17 Aug 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc