Skip to content

Instantly share code, notes, and snippets.

@DimitarChristoff
Created October 2, 2014 11:01
Show Gist options
  • Save DimitarChristoff/e2eafaa605e8d8f19b11 to your computer and use it in GitHub Desktop.
Save DimitarChristoff/e2eafaa605e8d8f19b11 to your computer and use it in GitHub Desktop.
sample require-config.js for use with epik
/*window.require breaks due to context of methods. see http://tobyho.com/2013/03/13/window-prop-vs-global-var/ */
/*jshint -W079*/
var require = (typeof require === 'function' || typeof require === 'object') ? require : {};
;(function(){
'use strict';
/**
* @description {Require.config} object
* @type {{paths: {}, shim: {}, bundles: {}}}
*/
var config = {
// the url below may change / be tweaked. if using data-main, comment this
baseUrl: './js',
// define where modules can be found
paths: {
lodash: '../../bower_components/lodash/dist/lodash',
primish: '../../bower_components/primish',
epik: '../../bower_components/epik/lib',
rivets: '../../bower_components/rivets/dist/rivets',
jquery: '../../bower_components/jquery/dist/jquery.min'
},
// bundles define module IDs resolved by concatenated build files that provide more than 1 thing
bundles: {
'primish/primish-min': [
'primish/primish',
'primish/options',
'primish/emitter'
],
'epik/epik-min': [
'epik/index',
'epik/model',
'epik/model-sync',
'epik/collection',
'epik/collection-sync',
'epik/agent',
'epik/storage',
'epik/router',
'epik/view',
'epik/plugins/rivets-adapter',
'slicker'
]
},
exclude: [
// list of module ids/files that should not be in the build.
]
};
// code coverage should not cover UMD wraps
/* istanbul ignore next */
// UMD-like wrap that sets config if possible, exports it or primes it / merges it
if (typeof define === 'function' && define.amd){
// require already loaded, configure above
require.config(config);
}
else if (typeof module !== 'undefined' && module.exports){
// under nodejs, return the object
module.exports = config;
}
else {
// if require pre-config exists, this will merge with existing config, overwrites keys
for (var k in config){
// shallow
config.hasOwnProperty(k) && (require[k] = config[k]);
}
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment