Skip to content

Commit

Permalink
works via npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
purge committed Oct 2, 2013
1 parent 4b0504a commit 84a03da
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
.DS_Store
node_modules/
config.js
compiled/**/*.*
lib/

# temporary!
dist/
compiled/
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
npm-debug.log
node_modules
src
test
2 changes: 1 addition & 1 deletion Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = (grunt) ->

clean:
all:
src: [ "compiled" ]
src: [ "compiled/js", "compiled/tests" ]

connect:
publisher:
Expand Down
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sqwidget",
"title": "Sqwidget",
"version": "2.0.0",
"version": "2.0.1",
"contributors": [
"Adhip Gupta <[email protected]>",
"Simon Elliott <[email protected]>"
Expand All @@ -10,6 +10,13 @@
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "http://github.com/premagasar/sqwidget"
},
"bugs": {
"url": "http://github.com/premagasar/sqwidget/issues"
},
"dependencies": {},
"devDependencies": {
"grunt": "latest",
Expand All @@ -33,6 +40,7 @@
},
"scripts": {
"prepublish": "make build",
"build": "make build",
"test": "make test"
}
}

0 comments on commit 84a03da

Please sign in to comment.