-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modernizing the library a bit #15
base: master
Are you sure you want to change the base?
Conversation
Renamed License to .txt Add Git ignore Add .npmignore and add a circleci config Add Contributing Document. update Readme
node_modules | ||
package-lock.json | ||
test-results.xml | ||
test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This keeps the tests out of the published package, making the published package smaller
@@ -1,12 +1,16 @@ | |||
# UTF-7 | |||
|
|||
[](https://circleci.com/gh/kkaefer/utf7) | |||
[](https://circleci.com/gh/kkaefer/utf7) [](https://www.npmjs.com/package/utf7) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a badge for your NPM package
|
||
Encodes and decodes JavaScript (Unicode/UCS-2) strings to UTF-7 ASCII strings. It supports two modes: UTF-7 as defined in [RFC 2152](http://tools.ietf.org/html/rfc2152) and Modified UTF-7 as defined by the IMAP standard in [RFC 3501, section 5.1.3](http://tools.ietf.org/html/rfc3501#section-5.1.3) | ||
|
||
## Usage | ||
|
||
**RFC 2152** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Markdown linters prefer using headers over emphasis here
"scripts": { | ||
"test": "tape test/*.js" | ||
} | ||
"test": "tape test/*.js | tap-xunit > test-results.xml" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change allows circle CI to parse the uni test results
@alisonaquinas Have you been able to get ahold of Konstantin? even just changing a single character in the package.json (~ to a ^) would be enough to get npm update to allow semver |
Hello, Konstantin; thank you for getting back to me, I appreciate it. I've got this broken up into two commits, I won't be offended if you pick and choose; I just wanted to share the work I already did.