1.2.1 • Published 9 years ago

put-packages-in-requirejs-config v1.2.1

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
9 years ago

put-packages-in-requirejs-config

A simple module to update a requirejs config to include packages from a CommonJS Packages/A directory.

Tastes great, and goes well with copy-browser-modules.

Use:

var insertPackagesFromPathIntoConfig = require('put-packages-in-requirejs-config');

insertPackagesFromPathIntoConfig('path/to/packages', 'path/to/config/file' /* , 'path/to/target/config/file' */).then(function() {
    console.log('success!');
}).catch(function (err) {
    console.error('that went bad', err);
});

The last argument is completely optional, and if not given, the original config file will be updated.