cisv 0.4.5 → 0.4.7
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/README.md +1 -1
- package/binding.gyp +4 -4
- package/package.json +4 -4
package/README.md
CHANGED
package/binding.gyp
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"target_name": "cisv",
|
|
5
5
|
"sources": [
|
|
6
6
|
"cisv/cisv_addon.cc",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
7
|
+
"../core/core/src/parser.c",
|
|
8
|
+
"../core/core/src/writer.c",
|
|
9
|
+
"../core/core/src/transformer.c"
|
|
10
10
|
],
|
|
11
11
|
"include_dirs": [
|
|
12
12
|
"<!@(node -p \"require('node-addon-api').include\")",
|
|
13
|
-
"
|
|
13
|
+
"../core/core/include/",
|
|
14
14
|
"cisv/"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cisv",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"description": "The csv parser on steroids.",
|
|
5
5
|
"author": "sanix<s4nixd@gmail.com>",
|
|
6
6
|
"main": "./build/Release/cisv.node",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"install": "node-gyp rebuild",
|
|
24
24
|
"build": "node-gyp rebuild",
|
|
25
|
-
"test": "mocha ./tests/*.test.js &&
|
|
25
|
+
"test": "mocha ./tests/*.test.js && node ./test_transform_leak_test.js",
|
|
26
26
|
"test:build": "npm run build && npm run test",
|
|
27
|
-
"benchmark-js": "node ./benchmark.js",
|
|
28
|
-
"benchmark-core": "
|
|
27
|
+
"benchmark-js": "node ./benchmarks/benchmark.js",
|
|
28
|
+
"benchmark-core": "node ./benchmarks/benchmark.js",
|
|
29
29
|
"lint": "clang-format -i cisv/*.{cc,h}",
|
|
30
30
|
"pretest:typescript": "tsc --project tsconfig.json --noEmit",
|
|
31
31
|
"build:types": "tsc --project tsconfig.json --declaration --emitDeclarationOnly",
|