Skip to content

Commit

Permalink
Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelmlins committed May 26, 2020
1 parent c2b9a8b commit 2362a49
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: node_js
node_js:
- "10"
- "12"
cache: yarn

install: yarn
script:
- echo "Not found tests"

jobs:
include:
- stage: npm release
if: tag IS present
node_js: "10"
script: yarn build
deploy:
provider: npm
email: $EMAIL_ADDRESS
api_key: $AUTH_TOKEN
skip_cleanup: true
on:
tags: true
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# bs-react-shadow-scroll

[![npm version](https://badge.fury.io/js/bs-react-shadow-scroll.svg)](https://www.npmjs.com/package/bs-react-shadow-scroll) • [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/andrelmlins/bs-react-shadow-scroll/blob/master/LICENSE) • [![Build Status](https://travis-ci.com/andrelmlins/bs-react-shadow-scroll.svg?branch=master)](https://travis-ci.com/andrelmlins/bs-react-shadow-scroll)

ReasonML bindings for the [react-shadow-scroll](https://github.com/andrelmlins/react-shadow-scroll)

React Shadow Scroll component that customizes the list and inserts shadow when scrolling exists.

## Installation

1. Install npm package

with yarn

```
yarn add bs-react-shadow-scroll
```

with npm

```
npm install --save bs-react-shadow-scroll
```

2. Bsconfig

Add bs-react-shadow-scroll to bsconfig.json bs-dependencies.

## License

Bucklescript React Shadow Scroll is open source software [licensed as MIT](https://github.com/andrelmlins/bs-react-shadow-scroll/blob/master/LICENSE).
22 changes: 20 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
{
"name": "bs-react-shadow-scroll",
"description": "ReasonReact bindings for the react-shadow-scroll",
"description": "ReasonML bindings for the react-shadow-scroll",
"version": "0.1.0",
"main": "index.js",
"main": "src/ReactShadowScroll.re",
"license": "MIT",
"author": "André Lins <andrelucas01@hotmail.com> (https://andrelmlins.github.io/)",
"files": [
"src"
],
"homepage": "https://github.com/andrelmlins/bs-react-shadow-scroll",
"repository": {
"type": "git",
"url": "git+https://github.com/andrelmlins/bs-react-shadow-scroll.git"
},
"bugs": {
"url": "https://github.com/andrelmlins/bs-react-shadow-scroll/issues"
},
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "exit 0"
},
"dependencies": {
"react-shadow-scroll": "^1.0.1"
},
Expand Down

0 comments on commit 2362a49

Please sign in to comment.