-
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.
- Loading branch information
Jeff Escalante
committed
Feb 1, 2016
1 parent
700ccc6
commit d6efd39
Showing
10 changed files
with
35 additions
and
96 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 |
---|---|---|
@@ -1,23 +1,21 @@ | ||
axis = require 'axis' | ||
rupture = require 'rupture' | ||
autoprefixer = require 'autoprefixer-stylus' | ||
js_pipeline = require 'js-pipeline' | ||
css_pipeline = require 'css-pipeline' | ||
cssnext = require 'postcss-cssnext' | ||
imports = require 'postcss-import' | ||
whitespace = require 'css-whitespace' | ||
js_pipeline = require 'js-pipeline' | ||
|
||
module.exports = | ||
ignores: ['readme.md', '**/layout.*', '**/_*', '.gitignore', 'ship.*conf'] | ||
|
||
extensions: [ | ||
js_pipeline(files: 'assets/js/*.coffee'), | ||
css_pipeline(files: 'assets/css/*.styl') | ||
] | ||
|
||
stylus: | ||
use: [axis(), rupture(), autoprefixer()] | ||
sourcemap: true | ||
babel: | ||
presets: ['es2015', 'stage-2'] | ||
|
||
'coffee-script': | ||
sourcemap: true | ||
postcss: | ||
use: [imports(transform: whitespace), cssnext] | ||
from: 'assets/css/master.css' | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
jade: | ||
pretty: true |
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,8 @@ | ||
body | ||
padding: 50px | ||
font-family: "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif | ||
color: #555 | ||
-webkit-font-smoothing: antialiased | ||
-webkit-text-size-adjust: 100% | ||
-ms-text-size-adjust: 100% | ||
font-size-adjust: auto |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
/* See http://cssnext.io for extra available css features! */ | ||
/* Use this file to split out your css to multiple files. Just make sure to | ||
@import the file name here so it's included! */ | ||
|
||
@import "_global" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
console.log('Hello there! You can use ES6 here : )') |
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,6 +1,6 @@ | ||
extends layout | ||
|
||
block content | ||
h3 Welcome to roots! | ||
h3 Welcome to Roots! | ||
:marked | ||
Find tutorials and documentation at http://roots.cx : ) |
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
Ah yes, we still want sourcemaps here in development, and for babel as well. The css whitespace plugin however does not support sourcemaps. SugarSS will when it comes out!