We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ef0869 commit a388f2cCopy full SHA for a388f2c
.gitignore
@@ -105,3 +105,4 @@ dist
105
.tern-port
106
.idea
107
.vscode/
108
+.DS_Store
binding.gyp
@@ -28,6 +28,15 @@
28
],
29
"include_dirs" : [
30
"<!(node -e \"require('nan')\")"
31
+ ],
32
+ 'cflags!': [ '-fno-exceptions' ],
33
+ 'cflags_cc!': [ '-fno-exceptions' ],
34
+ 'conditions': [
35
+ ['OS=="mac"', {
36
+ 'xcode_settings': {
37
+ 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES'
38
+ }
39
+ }]
40
]
41
}
42
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "node-hdiffpatch",
3
- "version": "0.1.5",
+ "version": "1.0.0",
4
"description": "hdiffpatch port to node.js",
5
"main": "index.js",
6
"scripts": {
0 commit comments