Skip to content

Commit

Permalink
Let's update deps, and add release script.
Browse files Browse the repository at this point in the history
  • Loading branch information
brentlintner committed Jan 11, 2016
1 parent c707b4f commit c00b476
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 13 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
node_modules
coverage
.test
lib
10 changes: 10 additions & 0 deletions bin/release
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env sh
level=$1

if [ -z "${level}" ]; then
level=patch
fi

npm run compile &&
git add -f lib &&
release-it -n -p -i $level -m "v%s"
25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A vile plugin for scss-lint",
"main": "lib/index.js",
"scripts": {
"postinstall": "babel -d lib -m common src",
"compile": "babel -d lib -m common src",
"dev": "bin/dev",
"test": "bin/test"
},
Expand All @@ -18,18 +18,19 @@
"scss_lint"
],
"dependencies": {
"@brentlintner/vile": "~0.1.7",
"babel": "5.6.14",
"bluebird": "2.9.32",
"lodash": "3.9.3"
"@brentlintner/vile": "^0.4.1",
"babel": "^5.6.14",
"bluebird": "^3.1.1",
"lodash": "^3.10.1"
},
"devDependencies": {
"coffee-script": "1.9.3",
"chai": "3.0.0",
"istanbul": "0.3.16",
"mimus": "0.1.2",
"mocha": "2.2.5",
"sinon": "1.15.4",
"sinon-chai": "2.8.0"
"chai": "^3.4.1",
"coffee-script": "^1.10.0",
"istanbul": "^0.4.1",
"mimus": "^0.1.2",
"mocha": "^2.3.4",
"npm-check-updates": "^2.5.6",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}

0 comments on commit c00b476

Please sign in to comment.