Skip to content

Commit

Permalink
Add bower.json and update to ex 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranayub committed Jan 23, 2016
1 parent f3a23b4 commit 6f985fa
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 2 deletions.
33 changes: 33 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "excalibur-tiled",
"description": "Excalibur.js extension for Tiled map integration",
"main": "dist/excalibur-tiled.js",
"authors": [
"https://github.com/excaliburjs/excalibur-tiled/graphs/contributors"
],
"license": "BSD",
"keywords": [
"excalibur",
"game",
"engine",
"tiled",
"maps",
"map",
"typescript",
"javascript",
"simple"
],
"homepage": "https://github.com/excaliburjs/excalibur-tiled",
"moduleType": [],
"private": false,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"excalibur": "~0.6.0"
}
}
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<canvas id="game"></canvas>

<script src="../bower_components/excalibur/dist/excalibur-0.5.1.js"></script>
<script src="../bower_components/excalibur/dist/excalibur-0.6.0.js"></script>
<script src="../dist/excalibur-tiled.js"></script>
<script src="test.js"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="../bower_components/excalibur/dist/excalibur-0.5.1.d.ts" />
/// <reference path="../bower_components/excalibur/dist/excalibur-0.6.0.d.ts" />
/// <reference path="../dist/excalibur-tiled.d.ts" />

var game = new ex.Engine(500, 400, "game");
Expand Down
9 changes: 9 additions & 0 deletions test/web.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<staticContent>
<remove fileExtension=".json" />
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
</system.webServer>
</configuration>

0 comments on commit 6f985fa

Please sign in to comment.