Skip to content

Commit

Permalink
chore: version bump & readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamerrone committed Apr 24, 2019
1 parent b278445 commit 7e668e2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
29 changes: 21 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,30 @@ For CLI options, use the -h (or --help) argument:
```console
firefly -h
```
```text
Usage: firefly or
firefly [-i | --input <path>] [-e | --export <path>] [-w | --watch]
[-j | --json] [-h | --help] [-v | --version]
Options:
-i, --input <path> Specify the input file path.
-e, --export <path> Export the generated report in JSON format.
Flags:
-w, --watch Rerun firefly on file change.
-j, --json Output firefly's report in JSON format.
-h, --help Output usage information.
-v, --version Output the version number.
```

## Output
```bash
~/Projects/usability-test
❯ firefly -w
❯ firefly
FAIL main.css
Properties (4)
✘ [20:3] ie 11 does not support 'grid-template-columns'. Consider using Flexbox instead.
✘ [21:3] ie 11 does not support 'grid-template-rows'. Consider using Flexbox instead.
✘ [34:3] ie 11 does not support 'object-fit'. Try cropping the image or consider using 'background-size' instead.
✘ [35:3] ie 11 does not support 'object-position'. Try cropping the image or consider using 'background-position' instead.

[firefly] watching: main.css
Properties (3)
✘ [20:3] ie 11 does not support 'grid-template-columns'. Consider using 'flex' or 'float' instead.
✘ [21:3] ie 11 does not support 'grid-template-rows'. Consider using 'flex' or 'float' instead.
✘ [34:3] ie 11 does not support 'object-fit'. Consider using 'background-size' with 'background-image' instead. [Note]: You could also try cropping the image.
✘ [35:3] ie 11 does not support 'object-position'. Consider using 'background-position' with 'background-image' instead. [Note]: You could also try cropping the image.
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "project-firefly",
"version": "1.1.0",
"version": "1.2.0",
"description": "A CSS Support Validator.",
"main": "./src/index.js",
"bin": {
Expand Down

0 comments on commit 7e668e2

Please sign in to comment.