k2hash 1.1.24 → 1.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog +6 -0
- package/package.json +2 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
k2hash (1.1.25) unstable; urgency=low
|
|
2
|
+
|
|
3
|
+
* Fixed package.json for install command - #42
|
|
4
|
+
|
|
5
|
+
-- Takeshi Nakatani <ggtakec@gmail.com> Mon, 20 Feb 2023 11:13:16 +0900
|
|
6
|
+
|
|
1
7
|
k2hash (1.1.24) unstable; urgency=low
|
|
2
8
|
|
|
3
9
|
* Fixed scripts for package building and publishing - #40
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "k2hash",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.25",
|
|
4
4
|
"description": "K2HASH addon library for Node.js",
|
|
5
5
|
"os": "linux",
|
|
6
6
|
"main": "index.js",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"build:rebuild": "if [ -f src/binding.gyp ]; then cd src; fi && node-gyp rebuild --verbose --release --target_arch=x64 --coverage=true",
|
|
23
23
|
"build:linkdir": "if [ ! -f build -a ! -s build ]; then ln -s src/build .; fi",
|
|
24
24
|
"build:after": "echo \"Build - Succeed\"",
|
|
25
|
+
"install": "npm run build",
|
|
25
26
|
"test": "npm run test:all",
|
|
26
27
|
"test:all": "echo \"Test - All\" && tests/test.sh && echo \"Finished\"",
|
|
27
28
|
"test:k2hash": "echo \"Test - k2hash\" && tests/test.sh k2hash && echo \"Finished\"",
|