Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

configuration for public release #47

Merged
merged 18 commits into from Mar 6, 2017
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 21 additions & 0 deletions .eslintrc
@@ -0,0 +1,21 @@
{
parser: "babel-eslint",
"extends": "airbnb",
"rules": {
'arrow-body-style': 0,
'camelcase': 0,
'consistent-return': 0,
'import/extensions': 0,
'import/no-extraneous-dependencies': 0,
'import/no-unresolved': 0,
'import/prefer-default-export': 0,
'no-bitwise': 0,
'no-extend-native': 0,
'no-mixed-operators': 0,
'no-return-assign': 0,
'no-underscore-dangle': 0,
'no-unused-expressions': 0,
'max-len': 0,
'radix': 0,
}
}
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
node_modules
*.log
lib
dist
6 changes: 6 additions & 0 deletions .npmignore
Expand Up @@ -3,3 +3,9 @@ lib/
src/
tests/
.babelrc
.editorconfig
circle.yml
karma.conf.js
webpack.config.base.js
webpack.config.development.js
webpack.config.production.js
9 changes: 5 additions & 4 deletions README.md
@@ -1,5 +1,9 @@
# Brandibble Redux

[![npm](https://img.shields.io/npm/v/brandibble-redux.svg?style=flat-square)](https://www.npmjs.com/package/brandibble-redux)
[![CircleCI Status](https://img.shields.io/circleci/project/github/sanctuarycomputer/brandibble-redux/master.svg?label=circle&maxAge=43200&style=flat-square)](https://circleci.com/gh/sanctuarycomputer/brandibble-redux)
[![Open Source Love](https://img.shields.io/npm/l/brandibble-redux.svg?style=flat-square)](https://en.wikipedia.org/wiki/MIT_License)

A set of actions, reducers, and redux middleware for Brandibble.

### Configuration
Expand Down Expand Up @@ -79,15 +83,12 @@ export default class Main extends Component {
```

### Working on Brandibble Redux

**IMPORTANT:** Set an environment variable called `BRANDIBBLE_API_KEY` with your Brandibble API key before running tests.
```
git clone https://github.com/sanctuarycomputer/brandibble-redux
cd brandibble-redux
npm install

// Now you can run your build with:
npm run build

// Run tests (in chrome) with:
npm test
```
8 changes: 2 additions & 6 deletions circle.yml
@@ -1,11 +1,7 @@
machine:
timezone: America/New_York
node:
version: 4.3.0
version: 7.6.0

post:
- npm install -g npm@3.9.3

dependencies:
pre:
- rm -rf node_modules/brandibble
- npm install -g npm@4.3.0