k2hdkc 1.0.3 → 1.0.4
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
|
+
k2hdkc (1.0.4) unstable; urgency=low
|
|
2
|
+
|
|
3
|
+
* Fixed package.json for install command - #38
|
|
4
|
+
|
|
5
|
+
-- Takeshi Nakatani <ggtakec@gmail.com> Mon, 20 Feb 2023 13:36:17 +0900
|
|
6
|
+
|
|
1
7
|
k2hdkc (1.0.3) unstable; urgency=low
|
|
2
8
|
|
|
3
9
|
* Added build flags and removed unnecessary files - #36
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "k2hdkc",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "K2HDKC 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 - k2hdkc all\" && tests/test.sh k2hdkc && echo \"Finished\"",
|
|
27
28
|
"test:k2hdkc": "echo \"Test - k2hdkc k2hdkc\" && tests/test.sh k2hdkc && echo \"Finished\""
|