Created
March 24, 2016 00:04
-
-
Save alxhub/7502226cc1965e024a18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Builder = require('systemjs-builder'); | |
var b = (new Builder()); | |
b.config({ | |
map: { | |
app: 'src', | |
'deep-assign': 'node_modules/deep-assign', | |
'is-obj': 'node_modules/is-obj' | |
}, | |
packages: { | |
'deep-assign': { | |
main: 'index.js', | |
format: 'cjs' | |
}, | |
'is-obj': { | |
main: 'index.js' | |
} | |
} | |
}); | |
b.buildStatic('app/index.js', 'out.js'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var deepAssign = require('deep-assign') | |
console.log(deepAssign); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment