Removed andoid folder for eslint and type script and fixed apostrophes
This commit is contained in:
@@ -12,7 +12,8 @@
|
|||||||
"webpack.config.js",
|
"webpack.config.js",
|
||||||
"babel.config.js",
|
"babel.config.js",
|
||||||
"*.test.*",
|
"*.test.*",
|
||||||
"app.config.ts"
|
"app.config.ts",
|
||||||
|
"android/"
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"react/react-in-jsx-scope": "off",
|
"react/react-in-jsx-scope": "off",
|
||||||
|
|||||||
+2
-1
@@ -114,6 +114,7 @@
|
|||||||
"app.config.ts",
|
"app.config.ts",
|
||||||
"*/*.test.tsx",
|
"*/*.test.tsx",
|
||||||
"web-build",
|
"web-build",
|
||||||
"dist"
|
"dist",
|
||||||
|
"android"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -229,7 +229,7 @@ const PlayView = ({ songId, route }: RouteProps<PlayViewProps>) => {
|
|||||||
};
|
};
|
||||||
inputs.forEach((input) => {
|
inputs.forEach((input) => {
|
||||||
input.onmidimessage = (message) => {
|
input.onmidimessage = (message) => {
|
||||||
console.log("onmessage");
|
console.log('onmessage');
|
||||||
const { command, note } = parseMidiMessage(message);
|
const { command, note } = parseMidiMessage(message);
|
||||||
const keyIsPressed = command == 9;
|
const keyIsPressed = command == 9;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user