bump to 0.0.36

This commit is contained in:
Gregg Tavares 2015-11-18 18:40:36 +09:00
parent 116f578deb
commit c1c603a239
7 changed files with 30 additions and 12 deletions

View File

@ -1,6 +1,6 @@
{
"name": "twgl.js",
"version": "0.0.35",
"version": "0.0.36",
"homepage": "http://twgljs.org",
"authors": [
"Gregg Tavares <github@greggman.com>"

10
dist/twgl-full.js vendored
View File

@ -1,5 +1,5 @@
/**
* @license twgl.js 0.0.35 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
* @license twgl.js 0.0.36 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
* Available via the MIT license.
* see: http://github.com/greggman/twgl.js for details
*/
@ -490,7 +490,13 @@ define('twgl/twgl',[], function () {
* @module twgl
*/
var error = window.console && window.console.error ? window.console.error.bind(window.console) : function() { };
var error =
( window.console
&& window.console.error
&& typeof window.console.error === "function"
)
? window.console.error.bind(window.console)
: function() { };
// make sure we don't see a global gl
var gl = undefined; // eslint-disable-line
var defaultAttribPrefix = "";

File diff suppressed because one or more lines are too long

10
dist/twgl.js vendored
View File

@ -1,5 +1,5 @@
/**
* @license twgl.js 0.0.35 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
* @license twgl.js 0.0.36 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
* Available via the MIT license.
* see: http://github.com/greggman/twgl.js for details
*/
@ -490,7 +490,13 @@ define('twgl/twgl',[], function () {
* @module twgl
*/
var error = window.console && window.console.error ? window.console.error.bind(window.console) : function() { };
var error =
( window.console
&& window.console.error
&& typeof window.console.error === "function"
)
? window.console.error.bind(window.console)
: function() { };
// make sure we don't see a global gl
var gl = undefined; // eslint-disable-line
var defaultAttribPrefix = "";

4
dist/twgl.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "twgl.js",
"version": "0.0.35",
"version": "0.0.36",
"description": "A Tiny WebGL helper library",
"main": "dist/twgl-full.js",
"scripts": {