This repository was archived by the owner on Feb 24, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 323
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
1 parent
1b06e55
commit 46e918c
Showing
7 changed files
with
59 additions
and
42 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,3 @@ | ||
#!/bin/sh | ||
./sass source/stylesheets/print.css.scss > pub/css/print.css | ||
./sass source/stylesheets/screen.css.scss > pub/css/screen.css |
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 @@ | ||
#!/bin/sh | ||
./sass --output-style compressed source/stylesheets/print.css.scss > pub/css/print.css | ||
./sass --output-style compressed source/stylesheets/screen.css.scss > pub/css/screen.css |
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 |
---|---|---|
|
@@ -35,6 +35,6 @@ | |
}, | ||
"devDependencies": { | ||
"ejs-lint": "^0.2.0", | ||
"node-sass": "^3.10.1" | ||
"node-sass": "^3.14.0-0" | ||
} | ||
} |
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,11 @@ | ||
#!/bin/sh | ||
# This script assumes you have Ruby Slate checkout by the side of shins | ||
cp ../slate/source/fonts source/fonts | ||
cp ../slate/source/images source/images | ||
cp ../slate/source/includes source/includes | ||
cp ../slate/source/javascripts source/javascripts | ||
cp ../slate/source/javascripts/app source/javascripts/app | ||
cp ../slate/source/javascripts/lib source/javascripts/lib | ||
cp ../slate/source/layouts source/layouts | ||
cp ../slate/source/stylesheets source/stylesheets | ||
echo Please run ./buildstyle to rebuild the .css files |