Skip to content

Commit

Permalink
can: Change package.json to fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebi2k1 committed Dec 31, 2012
1 parent eb6e8d1 commit 4ed1a8f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"author": "Sebastian Haas <[email protected]>",
"name": "can",
"author": {
"name": "Sebastian Haas",
"email": "[email protected]"
},
"description": "A SocketCAN abstraction layer for NodeJS.",
"version": "1.0.4",
"version": "1.0.6",
"repository": {
"type": "git",
"url": "git://github.com/sebi2k1/node-can.git"
},
"main": "can.js",
"engines": {
"node": "~0.6.6"
"scripts" : {
"preinstall" : "node-waf configure && node-waf build",
"preuninstall" : "rm -rf build/*"
},
"dependencies": {},
"devDependencies": {}
"main": "can.js"
}
File renamed without changes.
File renamed without changes.
4 changes: 1 addition & 3 deletions wscript
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
srcdir = '.'
blddir = 'build'
VERSION = '1.0.4'

def set_options(opt):
opt.tool_options('compiler_cxx')
Expand All @@ -12,4 +10,4 @@ def configure(conf):
def build(bld):
can = bld.new_task_gen('cxx', 'shlib', 'node_addon')
can.target = 'can'
can.source = [ 'src/raw.cc' ]
can.source = 'raw.cc'

0 comments on commit 4ed1a8f

Please sign in to comment.