Skip to content

Commit

Permalink
Merge pull request #2 from ace411/0.x
Browse files Browse the repository at this point in the history
Preparing for first stable release
  • Loading branch information
ace411 authored Jan 20, 2020
2 parents 3da1d24 + bfe31f2 commit 8b67b50
Show file tree
Hide file tree
Showing 192 changed files with 5,755 additions and 956 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"@babel/env"
]
}
24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"extends": ["airbnb"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 0,
"no-undef": 0,
"no-console": 0,
"func-names": 0,
"no-unused-vars": 0,
"indent": ["error", 2],
"no-nested-ternary": 0,
"no-underscore-dangle": 0,
"no-restricted-syntax": [0, "ForOfStatement"]
},
"env": {
"es6": true,
"commonjs": true,
"browser": true
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
/node_modules/
/coverage/
/TODO
/coverage/
/*.lock
/*.log
/.nyc*
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ node_js:
- "node"

install:
- npm install --save-dev jest
- npm install -g codecov
- yarn install
- yarn global add codecov

script:
- npm run test
- codecov
- yarn test
- codecov
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img alt="logo" src="https://github.com/ace411/bingo-functional-js/blob/master/assets/bingo-functional-js-logo-720x405.png" width=300 />
<img alt="logo" src="https://raw.githubusercontent.com/ace411/bingo-functional-js/master/assets/bingo-functional-js-logo-720x405.png" width=300 />
</p>
<h1 align="center">Welcome to bingo-functional-js 👋</h1>
<p>
Expand Down Expand Up @@ -28,7 +28,13 @@
## Install

```sh
npm install
npm install bingo-functional-js
```

**OR**

```sh
yarn add bingo-functional-js
```

## Run tests
Expand All @@ -37,6 +43,12 @@ npm install
npm run test
```

**OR**

```sh
yarn test
```

## Author

👤 **Lochemem Bruno Michael**
Expand All @@ -51,6 +63,10 @@ Contributions, issues and feature requests are welcome!<br />Feel free to check

Give a ⭐️ if this project helped you!

Also, consider buying me a coffee if you feel I deserve one.

<a href="https://www.buymeacoffee.com/agiroLoki" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/lato-white.png" alt="Buy Me A Coffee" style="height: 51px !important;width: 217px !important;" ></a>

## 📝 License

Copyright © 2019 [Lochemem Bruno Michael](https://github.com/ace411).<br />
Expand Down
23 changes: 0 additions & 23 deletions __tests__/any.test.js

This file was deleted.

12 changes: 0 additions & 12 deletions __tests__/compose.test.js

This file was deleted.

8 changes: 0 additions & 8 deletions __tests__/concat.test.js

This file was deleted.

14 changes: 0 additions & 14 deletions __tests__/constantFunction.test.js

This file was deleted.

14 changes: 0 additions & 14 deletions __tests__/curry.test.js

This file was deleted.

28 changes: 0 additions & 28 deletions __tests__/data.js

This file was deleted.

16 changes: 0 additions & 16 deletions __tests__/dropLeft.test.js

This file was deleted.

16 changes: 0 additions & 16 deletions __tests__/dropRight.test.js

This file was deleted.

30 changes: 0 additions & 30 deletions __tests__/every.test.js

This file was deleted.

8 changes: 0 additions & 8 deletions __tests__/extend.test.js

This file was deleted.

16 changes: 0 additions & 16 deletions __tests__/filter.test.js

This file was deleted.

8 changes: 0 additions & 8 deletions __tests__/flip.test.js

This file was deleted.

19 changes: 0 additions & 19 deletions __tests__/fold.test.js

This file was deleted.

23 changes: 0 additions & 23 deletions __tests__/foldRight.test.js

This file was deleted.

7 changes: 0 additions & 7 deletions __tests__/fromPairs.test.js

This file was deleted.

14 changes: 0 additions & 14 deletions __tests__/head.test.js

This file was deleted.

8 changes: 0 additions & 8 deletions __tests__/identity.test.js

This file was deleted.

Loading

0 comments on commit 8b67b50

Please sign in to comment.