Skip to content
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.

Commit

Permalink
2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Nickel committed Jan 18, 2014
1 parent 85e9bc8 commit 477f744
Show file tree
Hide file tree
Showing 59 changed files with 1,726 additions and 380 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
node_modules
*.sublime-project
*.sublime-workspace
74 changes: 74 additions & 0 deletions Gruntfile.coffee
@@ -0,0 +1,74 @@
module.exports = (grunt) ->
grunt.initConfig

bwr: grunt.file.readJSON "bower.json"

concat:
dist:
options:
banner: "/*! #{grunt.util.linefeed}* <%= bwr.name %> - <%= bwr.description %> #{grunt.util.linefeed}* v<%= bwr.version %> #{grunt.util.linefeed}* <%= bwr.homepage %> #{grunt.util.linefeed}*/#{grunt.util.linefeed}#{grunt.util.linefeed}"

src: [
"src/_defaults.scss"
"src/functions/*.scss"
"src/mixins/*.scss"
"src/deprecated/*.scss"
]
dest: "_sunglass.scss"

copy:
dist:
files: [
expand: true,
cwd: "src/addons"
src: ["**/*.scss"]
dest: "addons"
]

sass:
test:
options:
# sourcemap: true
noCache: true

files: [
expand: true,
cwd: "test/",
src: ["**/*.scss"],
dest: "test/",
ext: ".css"
]

watch:
test:
options:
livereload: true
spawn: false
files: [
"test/**/*.scss"
"test/**/index.html"
"src/**/*.scss"
]
tasks: ["sass"]

connect:
test:
options:
port: 9000
base: "test"

grunt.loadNpmTasks "grunt-contrib-connect"
grunt.loadNpmTasks "grunt-contrib-sass"
grunt.loadNpmTasks "grunt-contrib-watch"
grunt.loadNpmTasks "grunt-contrib-concat"
grunt.loadNpmTasks "grunt-contrib-copy"

grunt.registerTask "dist", [
"concat"
"copy"
]

grunt.registerTask "test", [
"connect"
"watch"
]
23 changes: 23 additions & 0 deletions LICENCE
@@ -0,0 +1,23 @@
LICENSE

The MIT License

Copyright (c) 2013 Jason Nickel

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

0 comments on commit 477f744

Please sign in to comment.