Skip to content

Commit

Permalink
Correct outstanding references to Brunch
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Nov 11, 2018
1 parent 9f1f5fa commit 114675f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ coverage
# Generated PNG app icons
app/assets/icons/png

# Brunch
# Gulp
public/

# Private environment variables for deployment
Expand Down
12 changes: 1 addition & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,11 @@ node_js:
- "8"
- "7"
- "6"
# Installing rsvg-brunch requires a C++11 compiler and librsvg
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- librsvg2-dev
env:
- CXX=g++-4.8
install:
- npm install
- npm install coveralls
before_script:
- brunch build
- gulp build
script:
- npm run lint
- npm run coverage
Expand Down
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,14 @@ In the app, the AI player is lovingly referred to as "Mr. AI".

### 1. Install global dependencies

The project requires Node.js and Brunch, so make sure you have both.
The project requires Node.js and Gulp, so make sure you have both.

```bash
brew install node
```

```bash
npm install -g brunch
```

Optionally, you can install librsvg if you want to build the application icons:

```bash
brew install librsvg
npm install -g gulp-cli
```

### 2. Install project dependencies
Expand All @@ -77,7 +71,5 @@ npm install
To serve the app locally, run:

```bash
brunch watch --server
gulp build:watch
```

When run, the app will be accessible at `http://localhost:3333`.

0 comments on commit 114675f

Please sign in to comment.