Commit e8b4b38a by supersheep

add commonjs support

parent 5234aa33
node_modules node_modules
neurons
build
raphael.pro-min.js raphael.pro-min.js
raphael.pro.js raphael.pro.js
/.idea /.idea
\ No newline at end of file
var core = require('./raphael.core');
if(core.svg){
require('./raphael.svg');
}
if(core.vml){
require('./raphael.vml');
}
module.exports = core;
\ No newline at end of file
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
} else { } else {
// Browser globals (glob is window) // Browser globals (glob is window)
// Raphael adds itself to window // Raphael adds itself to window
factory(glob, glob.eve); factory(glob, glob.eve || (typeof require == "function" && require('eve')) );
} }
}(this, function (window, eve) { }(this, function (window, eve) {
/*\ /*\
...@@ -5376,5 +5376,8 @@ ...@@ -5376,5 +5376,8 @@
// Even with AMD, Raphael should be defined globally // Even with AMD, Raphael should be defined globally
oldRaphael.was ? (g.win.Raphael = R) : (Raphael = R); oldRaphael.was ? (g.win.Raphael = R) : (Raphael = R);
if(typeof exports == "object"){
module.exports = R;
}
return R; return R;
})); }));
{
"name": "raphael",
"version": "2.1.2",
"description": "JavaScript Vector Library",
"main": "./dev/index.js",
"repository": "git://github.com/DmitryBaranovskiy/raphael.git",
"keywords": [
"vector",
"canvas",
"visualization"
],
"license": "MIT",
"author": {
"name": "Dmitry Baranovskiy"
},
"bugs": {
"url": "http://github.com/DmitryBaranovskiy/raphael/issues"
},
"homepage": "http://github.com/DmitryBaranovskiy/raphael",
"cortex":{
"dependencies":{
"eve":"^0.5.0"
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment