Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikwilkowski committed Apr 22, 2018
2 parents 858a70f + 2f2c961 commit 663655a
Show file tree
Hide file tree
Showing 27 changed files with 6,404 additions and 1,571 deletions.
6 changes: 4 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
insert_final_newline = true
# See http://stackoverflow.com/a/729795
max_line_length = 160

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
coverage
.DS_Store
*.sublime-project
*.sublime-workspace
Expand All @@ -11,4 +12,4 @@ tmp
.idea
npm-debug.log
bin/
index.js
index.js
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,18 @@ Please look at the coding style and work with it, not against it ;)


## Test
The package comes with a testing tool for the font json format. Run the test with:
The package comes with a bunch of unit tests and a test suite for font files.

Run the unit tests via:

```shell
npm test:unit
```

Run the font test suite via:

```shell
npm test
npm test:fonts
```

This tool checks:
Expand All @@ -363,8 +371,15 @@ This tool checks:
- consistent width
- consistent lines

Or run all tests via:

```shell
npm run test
```


## Release History
* 2.0.0 - Added tests, split into more pure functions
* 1.2.0 - Added `transparent` and `system` as default background and color option, added `backgroundColor` as alias for `background`, upgraded deps
* 1.1.3 - Fixed help text, removing old -t option
* 1.1.2 - Fixed issue with older commander version #3, updated docs
Expand Down
Loading

0 comments on commit 663655a

Please sign in to comment.