-
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.
- Loading branch information
Josh Brown
committed
Jul 23, 2019
1 parent
ddbc57b
commit e616321
Showing
3 changed files
with
15 additions
and
5 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,6 +1,7 @@ | ||
# Code coverage reports | ||
coverage/ | ||
.nyc_output/ | ||
benchmarks/ | ||
coverage/ | ||
temp/ | ||
|
||
# IDE Configuration | ||
.idea/ | ||
.vscode/ |
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,10 +1,19 @@ | ||
language: node_js | ||
node_js: | ||
- 'node' | ||
- node | ||
|
||
script: | ||
- npm run build | ||
- npm run format:check | ||
- npm run lint:check | ||
- npm run coverage:check | ||
- npm run docs:check | ||
|
||
deploy: | ||
provider: npm | ||
email: [email protected] | ||
on: | ||
tags: true | ||
skip_cleanup: true | ||
api_key: | ||
secure: Ab9t8arnrVFSuxPg0xy2QJrqZ7aAluAs1+zJhgWghjF4g795Q5OKRgibNtk4+KzqSY0TfG0NQPZ+MQeEPWb2hH/ThN4VTW82lMMBFQRQ2d687tpDCbG1SahvNRFfZmU1i9FPsM9YP/Cri+wMR/YL2ScqH7Lv/1hAKEvYh07CL4deKUwV3Io6R+gPuXOzTPxzDA7mGB8ZhnbKJ+bIZkLfnAQE8Vz2kT9msPLT5W9mAEtGF8zB6aZaqjGrAPsoSN0VoSWj615gpdj6q10HGMMHrG5RT/ZjYAuzag86K7rFL1WEI5aSqkbj+yWKGw9OrBi1mxSORTd8pLFSqn0hOJcCe9JbqoDslLXTYhdRzZq9hLs3IUfSAJLqw94MDRh3gzhf61fMg8ai6uFh+bmiruewJqDz0EhyR/qb5YuDDODga4HZbnusTD1BIJNWIrKHAh3OJITnKJx7ITGZjL6u68JGqmI+3epIpnuzVgC8pI+cB3Xpdp3AIwF6XKVwAZ1EYYVSmwhqzC213THBuw+cEU/kOkGYk83MuI+9fDWoqNre9IHIF8InbHmfT+wCDNkP4yMpZndO3qdkB1zWiZnAwVqXSYrW6o9GUzxyntegfdhc80CJ6/5EK/HdOluSlpILOOxaKabcqdBsNPAlmx4mXYDuuGmdC63+wrAkxxmwKJDFYsU= |
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,7 +1,7 @@ | ||
{ | ||
"name": "@josh-brown/vector", | ||
"author": "Joshua Brown <[email protected]>", | ||
"version": "1.0.0", | ||
"version": "0.0.3", | ||
"description": "A linear algebra library written in TypeScript that focuses on generality, extensibility, and ease of use.", | ||
"license": "ISC", | ||
"repository": { | ||
|