-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from BassT/intro-sass
Introduce style.scss. Add npm task 'build-css'. Update README and travis config file.
- Loading branch information
Showing
7 changed files
with
17 additions
and
6 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
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
language: node_js | ||
node_js: stable | ||
|
||
install: | ||
- npm install | ||
- $(npm bin)/bower install | ||
|
||
script: | ||
- npm run lint | ||
- npm test | ||
- npm run browsertest | ||
- npm run postinstall-deploy |
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
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
"name": "come2help", | ||
"version": "0.0.1", | ||
"authors": [ | ||
"Valentin Zickner <[email protected]>" | ||
"Valentin Zickner <[email protected]>", | ||
"Sebastian Richter <[email protected]>" | ||
], | ||
"main": "index.html", | ||
"license": "GPL", | ||
|
File renamed without changes.
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
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 |
---|---|---|
|
@@ -14,6 +14,9 @@ | |
}, { | ||
"name": "Joshua Gleitze", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Sebastian Richter", | ||
"email": "[email protected]" | ||
}], | ||
"license": "GPL-3.0", | ||
"repository": { | ||
|
@@ -42,6 +45,10 @@ | |
"unzip": "^0.1.11" | ||
}, | ||
"scripts": { | ||
"postinstall-deploy": "npm run build-css && npm run lint && npm test && npm run browsertest", | ||
"postinstall-dev": "npm run build-css && npm run lint && npm run watch-css", | ||
"build-css": "node-sass css --output build/css", | ||
"watch-css": "node-sass -w -r css --output build/css", | ||
"test": "mocha --slow 2000", | ||
"browsertest": "export BROWSER=TRUE && mocha --slow 30000", | ||
"lint": "eslint js/**/*.js test/**/*.js" | ||
|