Skip to content

Commit

Permalink
🐛 Fix <path fill=\"rgba(,,,NaN)\" 💄 Support <img ng-src="" jaggy>
Browse files Browse the repository at this point in the history
  • Loading branch information
59naga committed Mar 28, 2015
1 parent 1084961 commit 21fb96a
Show file tree
Hide file tree
Showing 20 changed files with 14,877 additions and 14,549 deletions.
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
language: node_js
node_js:
- '0.10'
script: 'npm test'
- '0.10'
script:
- npm test
after_success:
- 'npm run coverage && npm run coveralls'
- npm run publish

env:
global:
secure: Ntsmce9vaWJWoAD6aFE9PbufcENR+bM49LvLjjSM+kZ8f92DVngBEwKA9tPh37KNCr935h4MxSJqe+OHQ50ObuJ5wiMJRsXc+4lvC4MLOo2ntIZd2qdol2SR+89LTT9YAiCX3JGnc/Us1KaUBh/hJ9A/OyxUF8rJLy6dDGldnW4=
- secure: Ntsmce9vaWJWoAD6aFE9PbufcENR+bM49LvLjjSM+kZ8f92DVngBEwKA9tPh37KNCr935h4MxSJqe+OHQ50ObuJ5wiMJRsXc+4lvC4MLOo2ntIZd2qdol2SR+89LTT9YAiCX3JGnc/Us1KaUBh/hJ9A/OyxUF8rJLy6dDGldnW4=
- secure: TsnPeT+sp3VGyHnnEJtsgjX20plmyR0CZv+dqzWlo5839FjA6BlSn6tHvL9O4agifjTarwcj3fRlkHjlvKSGqWiDttmCk2+83ilfHpDLncJ8086k1cQhkGu0nox3cuTHcfNJ0YRJeC/n/fFelL92KV/PSSHjQ/Q5DuzeG5+7a8Y=

deploy:
provider: npm
email: i59naga@icloud.com
api_key:
secure: LcnRlhCoHBQSA/noh2latGZeLhgWm3ImcraLo7bx96Xl/b+rCv8Y1txG+OPtWUpVF9Euwan6J3QQpivRgHvSf9pwAY3U0mymHFf1Ho9UIen7pHgB59/JTdPxlAH2U6I4zc/0tXdo1kznKpIjHqo3MqCYWQF2jT9Kupcgcek5sOc=
secure: LcnRlhCoHBQSA/noh2latGZeLhgWm3ImcraLo7bx96Xl/b+rCv8Y1txG+OPtWUpVF9Euwan6J3QQpivRgHvSf9pwAY3U0mymHFf1Ho9UIen7pHgB59/JTdPxlAH2U6I4zc/0tXdo1kznKpIjHqo3MqCYWQF2jT9Kupcgcek5sOc=
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
v0.1.4 / Mar 29 2015
=========================
* [`unknown`][1] :bug: Fix `<path fill="rgba(,,,NaN)"`
* [`unknown`][1] :lipstick: Support `<img ng-src="" jaggy>`

[1]: https://github.com/59naga/jaggy/commit

v0.1.3 / Mar 03 2015
=========================
* [`unknown`][unknown] Release v0.1.3
* [`unknown`][0] Release v0.1.3

[unknown]: https://
[0]: https://github.com/59naga/jaggy/commits/master
37 changes: 0 additions & 37 deletions LICENSE.md

This file was deleted.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ jaggy public_html -g 5
License
=========================
MIT by 59naga
[MIT][License] by 59naga
[License]: http://59naga.mit-license.org/
[.svg]: https://cdn.rawgit.com/59naga/jaggy/master/.svg?
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "jaggy",
"version": "0.0.7",
"version": "0.1.3",
"homepage": "https://github.com/59naga/jaggy",
"authors": [
"59naga <i59naga@icloud.com>"
],
"description": "<img src=\"pixel-art\"> to <svg>",
"main": "sources/jaggy.browser.min.js",
"main": "public/jaggy.browser.js",
"keywords": [
"pixel",
"pixel-art",
Expand Down
42 changes: 0 additions & 42 deletions gulpfile.coffee

This file was deleted.

17 changes: 16 additions & 1 deletion jaggy
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
#!/usr/bin/env node

require('./').cli();
if(typeof require('module')._extensions['.coffee']==='undefined'){
// Avoid conflicts with another version
require('coffee-script/register');
}
var jaggy= require('./lib/jaggy.coffee');

if(module.parent===null){
process.on('uncaughtException',function(error){
throw error;
process.exit(1);
});

jaggy.cli(process.argv.slice(2));
}

module.exports= jaggy;

0 comments on commit 21fb96a

Please sign in to comment.