Skip to content

Commit 0a14dbb

Browse files
committed
Removing stupid coverage
1 parent 1658561 commit 0a14dbb

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
package-lock.json
22
dist
3+
test/dist
4+
.nyc_output
5+
node_modules

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,4 @@ cache:
1010
directories:
1111
- node_modules
1212
script:
13-
- npm run testCi
14-
15-
after_success:
16-
- npm run coverage
13+
- npm run test

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fluent Behavior Tree
2-
[![Coverage Status](https://coveralls.io/repos/github/aequasi/fluent-behavior-tree/badge.svg?branch=master)](https://coveralls.io/github/aequasi/fluent-behavior-tree?branch=master) [![Build Status](https://travis-ci.org/aequasi/fluent-behavior-tree.svg?branch=master)](https://travis-ci.org/aequasi/fluent-behavior-tree) [![npm version](https://badge.fury.io/js/fluent-behavior-tree.svg)](https://badge.fury.io/js/fluent-behavior-tree)
2+
[![Build Status](https://travis-ci.org/aequasi/fluent-behavior-tree.svg?branch=master)](https://travis-ci.org/aequasi/fluent-behavior-tree) [![npm version](https://badge.fury.io/js/fluent-behavior-tree.svg)](https://badge.fury.io/js/fluent-behavior-tree)
33

44
This is a Typescript/Javascript implementation of https://github.com/codecapers/Fluent-Behaviour-Tree
55

package.json

-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
},
1010
"scripts": {
1111
"test": "rm -r test/dist; tsc -v && tsc -p test/ && ava -v",
12-
"testCi": "tsc && tsc -p test && nyc nyc --reporter=html --reporter=text ava",
13-
"coverage": "nyc report --reporter=text-lcov | coveralls",
1412
"compile": "npm run lint && tsc -p ./",
1513
"precommit": "npm run compile",
1614
"prepublishOnly": "npm run compile",
@@ -27,9 +25,7 @@
2725
"@types/es6-promise": "0.0.33",
2826
"@types/node": "^8.0.55",
2927
"ava": "^0.24.0",
30-
"coveralls": "^3.0.0",
3128
"husky": "^0.14.3",
32-
"nyc": "^11.3.0",
3329
"tslint": "^5.8.0",
3430
"typemoq": "^2.1.0",
3531
"typescript": "^2.6.2"

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"moduleResolution": "Node",
44
"module": "commonjs",
5-
"target": "es6",
5+
"target": "es2015",
66
"sourceMap": true,
77
"experimentalDecorators": true,
88
"emitDecoratorMetadata": true,

0 commit comments

Comments
 (0)