We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f854c3f commit c8c81aeCopy full SHA for c8c81ae
package.json
@@ -28,7 +28,8 @@
28
"scripts": {
29
"test": "rm test/*.hdt.index.* 2> /dev/null; mocha",
30
"lint": "eslint --fix lib/*.js test/*.js bin/*",
31
- "validate": "npm ls"
+ "validate": "npm ls",
32
+ "prepare": "replace-in-file --configFile=replace-in-file.json"
33
},
34
"dependencies": {
35
"minimist": "^1.1.0",
@@ -40,6 +41,7 @@
40
41
"eslint": "^5.3.0",
42
"mocha": "^6.2.2",
43
"precommit-hook": "^3.0.0",
44
+ "replace-in-file": "^8.3.0",
45
"should": "^13.1.0",
46
"@comunica/utils-bindings-factory": "^4.0.2"
47
replace-in-file.json
@@ -0,0 +1,5 @@
1
+{
2
+ "files": "deps/libhdt/src/util/StopWatch.cpp",
3
+ "from": "uint64_t",
4
+ "to": "unsigned long long"
5
+}
0 commit comments