Skip to content

Commit 89913b1

Browse files
committed
fix(*): indirectly fix a packaging problem
1 parent ef95095 commit 89913b1

File tree

3 files changed

+1418
-14
lines changed

3 files changed

+1418
-14
lines changed

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mitm/unityinvoker",
3-
"version": "0.0.0-development",
3+
"version": "0.0.0-semantic-release",
44
"description": "Node.js library to invoke Unity's CLI without headaches",
55
"author": "Morgan Touverey Quilling <[email protected]>",
66
"license": "MIT",
@@ -10,7 +10,8 @@
1010
"build": "yarn lint && tsc",
1111
"watch": "tsc -w",
1212
"semantic-release": "semantic-release pre && npm publish --access public && semantic-release post",
13-
"lint": "tslint src/**/*.ts"
13+
"test": "mocha dist/test/**/*.js",
14+
"lint": "tslint src/**/*.ts test/**/*.ts"
1415
},
1516
"repository": {
1617
"type": "git",
@@ -21,13 +22,15 @@
2122
},
2223
"homepage": "https://github.com/mitmadness/UnityInvoker#readme",
2324
"devDependencies": {
25+
"@types/mocha": "^2.2.41",
2426
"@types/node": "^7.0.12",
2527
"@types/pify": "^0.0.28",
28+
"semantic-release": "^6.3.2",
2629
"tslint": "^5.1.0",
27-
"typescript": "^2.2.2",
28-
"semantic-release": "^6.3.2"
30+
"typescript": "^2.2.2"
2931
},
3032
"dependencies": {
33+
"mocha": "^3.2.0",
3134
"pify": "^2.3.0"
3235
}
3336
}

test/index.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)