Skip to content

Commit

Permalink
fix(shape): Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Jan 14, 2016
1 parent a233517 commit 1df4adc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

work
build
examples
src
test
pids
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ notifications:
email: true
node_js:
- stable
- 5
- 4
before_script:
- npm prune
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Include in your project:
import { Cursor } from 'kittik-cursor';
import FigText from 'kittik-shape-fig-text';

FigText.create({text: 'Hello, there'}).render(cursor);
FigText.create({text: 'Hello, there'}).render(Cursor.create());
```

## License
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"url": "https://github.com/kittikjs/shape-fig-text.git"
},
"scripts": {
"compile": "babel src --out-dir lib",
"clean": "rm -rf ./lib",
"compile": "npm run clean; babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
Expand Down

0 comments on commit 1df4adc

Please sign in to comment.