Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
niquola committed Jun 4, 2016
1 parent b83d8f5 commit fd39af4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plpl",
"description": "node + plv8 + pg",
"version": "0.0.5",
"version": "0.0.6",
"dependencies": {
"cli": "latest",
"cli-table": "latest",
Expand Down
1 change: 1 addition & 0 deletions src/cli.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ reload = (args)->
console.log("Reloading #{config.entry}")
plv8 = require('./plv8')
plv8.execute load.scan(process.cwd() + '/' + config.entry)
console.log("Done")

compile = (args)->
file = args[0]
Expand Down
4 changes: 2 additions & 2 deletions src/loader.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ scan = (pth) ->
deps = []
fns = []
for fl, info of plv8_exports
console.log("Compile module #{fl}...")
console.log("-- Compile module #{fl}...")
deps.push(info.code)
for k,v of info.exports
console.log(" * fn #{k}...")
console.log("-- * fn #{k}...")
fns.push(generate_fn(info, k,v))

"""
Expand Down

0 comments on commit fd39af4

Please sign in to comment.