-
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.
Update grunt copy and grunt babel. Change main.js boilerplate to use …
…loadjs. New restore-db script attempts to create the database if it doesn't exist first making first run on a new machine easier. Update neat to version 2.1.0 and switch over to an autoprefixer from bourbon deprecated functions
- Loading branch information
Showing
27 changed files
with
505 additions
and
120 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,25 @@ | ||
tabLength: 4 | ||
extensionConfig: | ||
coffee: | ||
tabLength: 2 | ||
cson: | ||
tabLength: 2 | ||
es6: | ||
tabLength: 2 | ||
js: | ||
tabLength: 2 | ||
json: | ||
tabLength: 2 | ||
sh: | ||
tabLength: 2 | ||
grammarConfig: | ||
Babel: | ||
tabLength: 2 | ||
CoffeeScript: | ||
tabLength: 2 | ||
JSON: | ||
tabLength: 2 | ||
JSX: | ||
tabLength: 2 | ||
Javascript: | ||
tabLength: 2 |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ dist/ | |
src/media/ | ||
src/fontello/scss | ||
docs/_book | ||
/vendor/ |
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
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
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,27 @@ | ||
{ | ||
"name": "pennebaker/strathmoreproducts.com", | ||
"type": "project", | ||
"authors": [ | ||
{ | ||
"name": "Pennebaker", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type":"package", | ||
"package": { | ||
"name": "nystudio107/cookies", | ||
"version":"1.0.4", | ||
"source": { | ||
"url": "https://github.com/nystudio107/cookies.git", | ||
"type": "git", | ||
"reference":"1.0.4" | ||
} | ||
} | ||
} | ||
], | ||
"require": { | ||
"nystudio107/cookies": "1.0.4" | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
autoprefixer = require('autoprefixer') | ||
cssnano = require('cssnano') | ||
|
||
module.exports = (grunt) -> | ||
grunt.config 'postcss', | ||
dist: | ||
options: | ||
processors: [ | ||
autoprefixer({browsers: 'last 3 versions'}) | ||
cssnano() | ||
] | ||
src: 'dist/public/assets/styles/*.css' | ||
dev: | ||
options: | ||
processors: [ | ||
autoprefixer({browsers: 'last 3 versions'}) | ||
] | ||
map: | ||
inline: false | ||
src: 'dist/public/assets/styles/*.css' | ||
return |
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
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
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
Empty file.
Oops, something went wrong.