Create a build script to concatenate and (optionaly) minify the files in the lib directory.

This commit is contained in:
Antoine Proulx
2012-03-05 20:59:41 -05:00
parent 2a1acc3477
commit ac802613a8
7 changed files with 100 additions and 2 deletions

5
dist/kinetic.js vendored
View File

@@ -25,6 +25,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
///////////////////////////////////////////////////////////////////////
// Global Object
///////////////////////////////////////////////////////////////////////
@@ -120,6 +121,7 @@ window.requestAnimFrame = (function(callback){
};
})();
///////////////////////////////////////////////////////////////////////
// Node
///////////////////////////////////////////////////////////////////////
@@ -1835,7 +1837,6 @@ Kinetic.Polygon.prototype = {
// extend Shape
Kinetic.GlobalObject.extend(Kinetic.Polygon, Kinetic.Shape);
///////////////////////////////////////////////////////////////////////
// RegularPolygon
///////////////////////////////////////////////////////////////////////
@@ -1889,7 +1890,6 @@ Kinetic.RegularPolygon.prototype = {
// extend Shape
Kinetic.GlobalObject.extend(Kinetic.RegularPolygon, Kinetic.Shape);
///////////////////////////////////////////////////////////////////////
// Star
///////////////////////////////////////////////////////////////////////
@@ -2098,3 +2098,4 @@ Kinetic.Text.prototype = {
};
// extend Shape
Kinetic.GlobalObject.extend(Kinetic.Text, Kinetic.Shape);

31
dist/kinetic.min.js vendored Normal file

File diff suppressed because one or more lines are too long