Skip to content

Commit 7f1a18b

Browse files
author
root
committed
added yarn.lock to gitignore
1 parent 9fdc629 commit 7f1a18b

File tree

3 files changed

+78
-2
lines changed

3 files changed

+78
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
22
.idea
33
.DS_Store
4-
files/
4+
files/
5+
yarn.lock

build/config.gypi

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Do not edit. File was generated by node-gyp's "configure" step
2+
{
3+
"target_defaults": {
4+
"cflags": [],
5+
"default_configuration": "Release",
6+
"defines": [],
7+
"include_dirs": [],
8+
"libraries": []
9+
},
10+
"variables": {
11+
"arm_float_abi": "hard",
12+
"arm_fpu": "vfp",
13+
"arm_thumb": 0,
14+
"arm_version": "6",
15+
"asan": 0,
16+
"coverage": "false",
17+
"debug_devtools": "node",
18+
"debug_http2": "false",
19+
"debug_nghttp2": "false",
20+
"force_dynamic_crt": 0,
21+
"gas_version": "2.24",
22+
"host_arch": "arm",
23+
"icu_data_file": "icudt60l.dat",
24+
"icu_data_in": "../../deps/icu-small/source/data/in/icudt60l.dat",
25+
"icu_endianness": "l",
26+
"icu_gyp_path": "tools/icu/icu-generic.gyp",
27+
"icu_locales": "en,root",
28+
"icu_path": "deps/icu-small",
29+
"icu_small": "true",
30+
"icu_ver_major": "60",
31+
"llvm_version": 0,
32+
"node_byteorder": "little",
33+
"node_enable_d8": "false",
34+
"node_enable_v8_vtunejit": "false",
35+
"node_install_npm": "true",
36+
"node_module_version": 59,
37+
"node_no_browser_globals": "false",
38+
"node_prefix": "/",
39+
"node_release_urlbase": "https://nodejs.org/download/release/",
40+
"node_shared": "false",
41+
"node_shared_cares": "false",
42+
"node_shared_http_parser": "false",
43+
"node_shared_libuv": "false",
44+
"node_shared_nghttp2": "false",
45+
"node_shared_openssl": "false",
46+
"node_shared_zlib": "false",
47+
"node_tag": "",
48+
"node_use_bundled_v8": "true",
49+
"node_use_dtrace": "false",
50+
"node_use_etw": "false",
51+
"node_use_lttng": "false",
52+
"node_use_openssl": "true",
53+
"node_use_perfctr": "false",
54+
"node_use_v8_platform": "true",
55+
"node_without_node_options": "false",
56+
"openssl_fips": "",
57+
"openssl_no_asm": 0,
58+
"shlib_suffix": "so.59",
59+
"target_arch": "arm",
60+
"uv_parent_path": "/deps/uv/",
61+
"uv_use_dtrace": "false",
62+
"v8_enable_gdbjit": 0,
63+
"v8_enable_i18n_support": 1,
64+
"v8_enable_inspector": 1,
65+
"v8_no_strict_aliasing": 1,
66+
"v8_optimized_debug": 0,
67+
"v8_promise_internal_field_count": 1,
68+
"v8_random_seed": 0,
69+
"v8_trace_maps": 0,
70+
"v8_use_snapshot": "true",
71+
"want_separate_host_toolset": 0,
72+
"nodedir": "/root/.node-gyp/9.4.0",
73+
"standalone_static_library": 1
74+
}
75+
}

midiHandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ input.on('message', function (deltaTime, message) {
3434
console.log(eventPackage);
3535
send("ADC_VALUES", eventPackage);
3636
});
37-
input.openPort(0);
37+
input.openPort(1);
3838

0 commit comments

Comments
 (0)