Skip to content

Commit

Permalink
Merge e60ff12 into 36b2a6a
Browse files Browse the repository at this point in the history
  • Loading branch information
jharrilim committed Dec 22, 2019
2 parents 36b2a6a + e60ff12 commit ef6cdcd
Show file tree
Hide file tree
Showing 9 changed files with 6,959 additions and 841 deletions.
17 changes: 17 additions & 0 deletions .babelrc
@@ -0,0 +1,17 @@
{
"presets": [
[ "@babel/env",
{
"targets": {
"esmodules": true,
"node": true
}
}
]
],
"plugins": [
"@babel/plugin-proposal-numeric-separator",
"@babel/proposal-class-properties",
"@babel/plugin-transform-runtime"
]
}
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
node_modules/
coverage
.nyc_output
7 changes: 3 additions & 4 deletions .travis.yml
@@ -1,12 +1,11 @@
language: node_js
node_js:
- 14
- 12
- 10
- 8
- 6
- 4
- "0.10"
script:
- "npm run test-travis"
- "npm run test:cov"
after_script:
- "npm install coveralls@2 && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"

6 changes: 4 additions & 2 deletions README.md
@@ -1,7 +1,9 @@
# yazl

[![Build Status](https://travis-ci.com/thejoshwolfe/yazl.svg?branch=master)](https://travis-ci.com/thejoshwolfe/yazl)
[![Coverage Status](https://coveralls.io/repos/github/thejoshwolfe/yazl/badge.svg?branch=master)](https://coveralls.io/github/thejoshwolfe/yazl?branch=master)
[![Build Status](https://img.shields.io/travis/com/thejoshwolfe/yazl?style=flat-square)](https://travis-ci.com/thejoshwolfe/yazl)
[![Coverage Status](https://img.shields.io/coveralls/github/thejoshwolfe/yazl?style=flat-square)](https://coveralls.io/github/thejoshwolfe/yazl?branch=master)
[![NPM Weekly Downloads](https://img.shields.io/npm/dw/yazl?style=flat-square)](https://www.npmjs.com/package/yazl)
[![NPM Version](https://img.shields.io/npm/v/yazl?style=flat-square)](https://www.npmjs.com/package/yazl)

yet another zip library for node. For unzipping, see
[yauzl](https://github.com/thejoshwolfe/yauzl).
Expand Down

0 comments on commit ef6cdcd

Please sign in to comment.