This repository has been archived by the owner on Feb 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2695607
Showing
153 changed files
with
16,598 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
rules: | ||
quotes: | ||
style: double |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`. |
Oops, something went wrong.