Skip to content

Commit

Permalink
Converted to an npm package and pushing to github
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisHedges committed Sep 15, 2012
1 parent 2454958 commit 6f41c36
Show file tree
Hide file tree
Showing 430 changed files with 57,227 additions and 9 deletions.
Binary file removed .DS_Store
Binary file not shown.
25 changes: 25 additions & 0 deletions Cakefile
@@ -0,0 +1,25 @@
fs = require 'fs'
{print} = require 'util'
which = require 'which'
{spawn, exec} = require 'child_process'

# ANSI Terminal Colors
bold = '\x1B[0;1m'
red = '\x1B[0;31m'
green = '\x1B[0;32m'
reset = '\x1B[0m'

log = (message, color, explanation) ->
console.log color + message + reset + ' ' + (explanation or '')

build = (callback) ->
options = ['-c','-b', '-o', 'lib', 'lib']
cmd = which.sync 'coffee'
coffee = spawn cmd, options
coffee.stdout.pipe process.stdout
coffee.stderr.pipe process.stderr
coffee.on 'exit', (status) -> callback?() if status is 0

task 'build', ->
build -> log ":)", green

1 change: 1 addition & 0 deletions README.md
@@ -0,0 +1 @@
Fluidity CSS test build
1 change: 1 addition & 0 deletions index.styl
@@ -0,0 +1 @@
@import 'fluidity/fluidity'
Binary file modified lib/.DS_Store
Binary file not shown.
17 changes: 17 additions & 0 deletions lib/fluidity.coffee
@@ -0,0 +1,17 @@
###
Fluidity
Copyright (c) 2012 Kris Hedges <kris@inkspeck.com>, http://Inkspeck.com
MIT Licensed
###

stylus = require 'stylus'
nodes = stylus.nodes
utils = stylus.utils

exports.version = '0.1.0'
exports.path = __dirname
plugin = ->
return (style) ->
style.include(__dirname)

exports = module.exports = plugin
26 changes: 26 additions & 0 deletions lib/fluidity.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions fluidity.styl → lib/fluidity.styl
@@ -1,10 +1,10 @@
@import "lib/reset"
@import "lib/grid"
@import "lib/colors"
@import "lib/type"
@import "lib/css3"
@import "lib/forms"
@import "lib/elements"
@import "fluidity/reset"
@import "fluidity/grid"
@import "fluidity/colors"
@import "fluidity/type"
@import "fluidity/css3"
@import "fluidity/forms"
@import "fluidity/elements"

// Feel Free to remove those pieces which you do not need.
// They are in order here based on dependency.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions lib/grid.styl → lib/fluidity/grid.styl
@@ -1,8 +1,8 @@
// Set the width of the grid in %
// Set the minwidth of the grid in px

gridWidth = 80%
minWidth = 960px
gridWidth = 100%
minWidth = 960px

// Apply the grid() Mixin to any container element in your CSS.
// Or
Expand Down
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions node_modules/.bin/cake

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/coffee

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/jade

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/stylus

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/which

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions node_modules/coffee-script/.npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/coffee-script/CNAME

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions node_modules/coffee-script/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 51 additions & 0 deletions node_modules/coffee-script/README

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 78 additions & 0 deletions node_modules/coffee-script/Rakefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions node_modules/coffee-script/bin/cake

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions node_modules/coffee-script/bin/coffee

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions node_modules/coffee-script/extras/jsl.conf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6f41c36

Please sign in to comment.