-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from RobotlegsJS/improvements
Improvements 🚀
- Loading branch information
Showing
21 changed files
with
550 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.idea | ||
.nyc_output | ||
build | ||
lib | ||
node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"printWidth": 80, | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": false, | ||
"trailingComma": "none", | ||
"bracketSpacing": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,34 @@ | |
"main": "lib/index.js", | ||
"typings": "lib/index.d.ts", | ||
"scripts": { | ||
"test": "karma start --single-run", | ||
"mocha": "mocha test/**/*.test.ts --require ts-node/register", | ||
"autoformat": "tsfmt -r --useTsconfig tsconfig.test.json", | ||
"test": "nyc mocha", | ||
"karma": "karma start --single-run", | ||
"autoformat": "prettier --config .prettierrc --write {src,test}/**/*.ts", | ||
"tslint-check": "tslint-config-prettier-check ./tslint.json", | ||
"clean-up": "rm -rf coverage && rm -rf lib", | ||
"prepublish": "tsc -d && publish-please guard", | ||
"publish-please": "npm run autoformat && npm run clean-up && publish-please" | ||
}, | ||
"nyc": { | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"test" | ||
], | ||
"extension": [ | ||
".ts" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"reporter": [ | ||
"text-summary", | ||
"lcov" | ||
], | ||
"sourceMap": true, | ||
"instrument": true | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:RobotlegsJS/RobotlegsJS-SignalCommandMap.git" | ||
|
@@ -39,13 +60,13 @@ | |
"@robotlegsjs/signals": "^0.0.10" | ||
}, | ||
"devDependencies": { | ||
"@types/bluebird": "^3.5.8", | ||
"@types/bluebird": "^3.5.11", | ||
"@types/chai": "^4.0.4", | ||
"@types/mocha": "^2.2.42", | ||
"@types/sinon": "^2.3.3", | ||
"@types/mocha": "^2.2.43", | ||
"@types/sinon": "^2.3.4", | ||
"bluebird": "^3.5.0", | ||
"browserify-versionify": "^1.0.6", | ||
"chai": "^4.1.1", | ||
"chai": "^4.1.2", | ||
"es6-map": "^0.1.5", | ||
"es6-symbol": "^3.1.1", | ||
"glslify": "^6.1.0", | ||
|
@@ -67,20 +88,23 @@ | |
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-sourcemap-writer": "^0.1.2", | ||
"karma-webpack": "^2.0.4", | ||
"mocha": "^3.5.0", | ||
"mocha": "^3.5.3", | ||
"nyc": "^11.2.1", | ||
"prettier": "^1.7.0", | ||
"publish-please": "^2.3.1", | ||
"reflect-metadata": "^0.1.10", | ||
"remap-istanbul": "^0.9.5", | ||
"rimraf": "^2.6.1", | ||
"rimraf": "^2.6.2", | ||
"sinon": "^3.2.1", | ||
"sinon-chai": "^2.13.0", | ||
"ts-loader": "^2.3.4", | ||
"source-map-support": "^0.4.18", | ||
"ts-loader": "^2.3.7", | ||
"ts-node": "^3.3.0", | ||
"tslint": "^5.7.0", | ||
"typescript": "^2.5.1", | ||
"typescript-formatter": "^6.0.0", | ||
"webpack": "^3.5.5", | ||
"webpack-dev-server": "^2.7.1" | ||
"tslint-config-prettier": "^1.5.0", | ||
"typescript": "^2.5.2", | ||
"webpack": "^3.6.0", | ||
"webpack-dev-server": "^2.8.2" | ||
}, | ||
"peerDependencies": { | ||
"reflect-metadata": "^0.1.10" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--compilers ts-node/register | ||
--require source-map-support/register | ||
--full-trace | ||
--bail | ||
node_modules/reflect-metadata/Reflect.js | ||
test/**/*.test.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.