Skip to content

Commit 8bc119b

Browse files
committed
Removed dependency on async.js, prepared npm publishing
1 parent 6f02116 commit 8bc119b

File tree

6 files changed

+40
-2274
lines changed

6 files changed

+40
-2274
lines changed

Gruntfile.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,13 @@ module.exports = function(grunt) {
4848
"glMatrixAddon" : {
4949
"deps" : ["glMatrix"],
5050
"exports" : "glMatrixAddon"
51-
},
52-
"async": {
53-
"deps": [],
54-
"exports": "async"
5551
}
5652
},
5753

5854
"paths" : {
5955
"typedefs" : "typedefs",
6056
"glMatrix" : "vendor/glMatrix",
61-
"glMatrixAddon" : "glMatrixAddon",
62-
"async": "vendor/async"
57+
"glMatrixAddon" : "glMatrixAddon"
6358
}
6459
}
6560
}

build/start.frag

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
//see this AMD call, not the internal modules in
66
//the closure below.
77
define([], factory);
8+
} else if (typeof module !== 'undefined') {
9+
module.exports = factory();
810
} else {
911
//Browser globals case. Just assign the
1012
//result to a property on the global.

0 commit comments

Comments
 (0)