-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove support for Bower, Component, Duo; * Refactor code-style; * Update docs; * Update tests; * Rewrite generation mechanism.
- Loading branch information
Showing
20 changed files
with
350 additions
and
2,096 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
.DS_Store | ||
*.zip | ||
*.log | ||
bower_components/ | ||
build/ | ||
components/ | ||
data/AFINN/ | ||
node_modules/ | ||
.nyc_output/ | ||
coverage/ | ||
data/ | ||
node_modules/ | ||
afinn-96.js | ||
afinn-96.min.js |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
language: node_js | ||
script: npm run-script test-travis | ||
sudo: false | ||
node_js: | ||
- '0.10' | ||
- '0.11' | ||
after_script: npm install [email protected] && cat ./coverage/lcov.info | coveralls | ||
- '0.12' | ||
- '4.0' | ||
- '5.0' | ||
- '6.0' | ||
after_success: bash <(curl -s https://codecov.io/bash) | ||
deploy: | ||
provider: npm | ||
email: [email protected] | ||
api_key: | ||
secure: VIrfaqHiHvIdPk0W/2MshEEIHUidwv5rn86wDCmtepPg7oLwQdBJmq/sf/e8FQhRsUJeDJWLUkQ5mX+ugMRJTjxT0HUXHQzEFIUZuLgcYuIYfMxLMSaQB1+ToJJa4DRKNtX69d/P0paIZ1u5TZeiVT7agEB9zwCR8+YlYpdR0d8= | ||
on: | ||
repo: wooorm/afinn-96 | ||
- provider: npm | ||
email: [email protected] | ||
api_key: | ||
secure: ZIRIvMbRhYBceujQMt6GUtUD+cvIrbOlx/NKUCaByDjPMKQJeYqh6An79OQvfWt8Wauba5yLbTqSKzCe94zcxTfsXFzg8jBQIuHH8kuGMQJeFWyn/qZYrfxySnDfjOEXmrDQ6/CpCRX/xnJMBmy49H9FXmo9enBVBqqrSFA3Ijs= | ||
on: | ||
tags: true | ||
node: '5.0' | ||
- provider: releases | ||
api_key: | ||
secure: ecLbntfUMYhGv0V7uyv0BIIt6s2x05/dXC1B8x7+qQw7/edh065/LekjNz+G0sy3yXH8Ud+4RM6gl4vqPrAlPXWClqUPAo9KwuWsZe2TqIZwrXwTTdE/vgwa3G6A5iuP+pmS6PLzdwWcM3osdSJHkJSxzkdxasbeYYzWLAIuF+0= | ||
file: | ||
- "afinn-96.js" | ||
- "afinn-96.min.js" | ||
on: | ||
tags: true | ||
node: '6.0' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.