diff --git a/.gitignore b/.gitignore index b39bccc..062616f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,9 @@ ehthumbs.db Thumbs.db +# dev files +process_scss.cmd + # Caches .sass-cache diff --git a/index.js b/index.js index f42f3d0..6be90b8 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,5 @@ +#!/usr/bin/env node + var userArgs = process.argv.slice(2), cwd = process.cwd(), outputPath = (function(file){ diff --git a/package.json b/package.json index 54de5cd..9f96118 100644 --- a/package.json +++ b/package.json @@ -5,11 +5,28 @@ "main": "index.js", "dependencies": { "autoprefixer": "^5.2.0", - "clean-css": "^3.4.1", - "node-sass": "^3.3.2", - "postcss": "^5.0.4" + "clean-css": "^3.4.5", + "node-sass": "^3.3.3", + "postcss": "^5.0.8" }, "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git://github.com/DanTheMan827/scss-compressor.git" + }, + "keywords": [ + "autoprefixer", + "clean-css", + "node-sass", + "postcss" + ], "author": "DanTheMan827", - "license": "ISC" + "license": "ISC", + "bugs": { + "url": "https://github.com/DanTheMan827/scss-compressor/issues" + }, + "homepage": "https://github.com/DanTheMan827/scss-compressor#readme" }