Skip to content
This repository has been archived by the owner on Feb 8, 2021. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
seanaery committed Oct 21, 2016
0 parents commit 2695607
Show file tree
Hide file tree
Showing 153 changed files with 16,598 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Ignore SASS files
/.sass-cache
.DS_Store
*.codekit
.idea
bower_components
node_modules
3 changes: 3 additions & 0 deletions .sass-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rules:
quotes:
style: double
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "iojs"
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.12"
- node_js: "iojs"
install:
- npm install -g gulp
- npm install bower -g
- npm run setup
script:
- gulp css
- gulp js
- gulp images
- gulp fonts
- gulp scss-lint
- gulp js-lint
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Installation

{{Name}} theme uses [Gulp](http://gulpjs.com) to compile Sass. Gulp needs Node.

#### Step 1
Make sure you have Node and npm installed.
You can read a guide on how to install node here: https://docs.npmjs.com/getting-started/installing-node

#### Step 2
Install bower: `npm install -g bower`.

#### Step 3
Go to the root of {{Name}} theme and run the following commands: `npm run setup`.

#### Step 4
Update `browserSyncProxy` in **config.json**.

#### Step 5
Run the following command to compile Sass and watch for changes: `gulp`.
Loading

0 comments on commit 2695607

Please sign in to comment.