This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed #1, now it will use Nan package for v8 stuff, so hopefully no m…
…ore breakages with new versions
- Loading branch information
Showing
5 changed files
with
67 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
build | ||
build | ||
node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
{ | ||
"targets": [{ | ||
"target_name" : "gcstats", | ||
"sources" : [ "src/gcstats.cc" ] | ||
"sources" : [ "src/gcstats.cc" ], | ||
"include_dirs" : [ | ||
"src", | ||
"<!(node -e \"require('nan')\")" | ||
] | ||
}] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{ | ||
"name" : "gc-stats", | ||
"version" : "0.0.1", | ||
"version" : "0.0.2", | ||
"description" : "Exposes node v8 garbage collection stats", | ||
"main" : "index.js", | ||
"repository" : "[email protected]:dainis/node-gcstats.git", | ||
"scripts" : { | ||
"install" : "node-gyp rebuild" | ||
}, | ||
"dependencies" : { | ||
"nan" : "~1.0.0" | ||
}, | ||
"gypfile" : true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters