Skip to content

Commit

Permalink
bubble up exceptions and error messages
Browse files Browse the repository at this point in the history
improved examples
  • Loading branch information
jleni committed Nov 28, 2019
1 parent 2ab5615 commit 983fc62
Show file tree
Hide file tree
Showing 16 changed files with 1,464 additions and 15,476 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ version: 2
defaults: &defaults
working_directory: ~/repo
docker:
- image: circleci/node:11.12.0
- image: circleci/node:12.13.1

jobs:
build:
<<: *defaults
steps:
- run: sudo apt-get install libusb-1.0.0
- run: sudo apt-get update -y && sudo apt-get install -y libusb-1.0.0 libudev-dev
- checkout
- run: yarn install
- run: yarn build

test:
<<: *defaults
steps:
- run: sudo apt-get install libusb-1.0.0
- run: sudo apt-get update -y && sudo apt-get install -y libusb-1.0.0 libudev-dev
- checkout
- run: yarn install
- run: yarn test:unit

publish:
<<: *defaults
steps:
- run: sudo apt-get install libusb-1.0.0
- run: sudo apt-get update -y && sudo apt-get install -y libusb-1.0.0 libudev-dev
- checkout
- run: yarn install
- run: yarn build
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,6 @@ typings/
TODO\.md

\dist
/certs/cert.pem
/certs/server.cert
/certs/server.key
Empty file added certs/.gitkeep
Empty file.
12 changes: 12 additions & 0 deletions certs/openssl.cnf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[ req ]
prompt = no
distinguished_name = req_distinguished_name

[ req_distinguished_name ]
C = CH
ST = TestState
L = TestLocality
O = Zondax
OU = Development
CN = Zondax
emailAddress = info@zondax.ch
Binary file modified docs/example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 983fc62

Please sign in to comment.