-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added labels to the map #38
Conversation
This reverts commit 48077b1.
- name: Install system dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install nodejs npm | ||
sudo apt-get install nodejs npm build-essential | ||
|
||
- name: Update npm | ||
run: sudo npm install -g npm@latest | ||
run: | | ||
npm --version | ||
npm install -g npm@latest | ||
npm --version | ||
|
||
- name: Install the VUE.js frontend | ||
working-directory: catkin_ws/src/opentera-webrtc-teleop-frontend/teleop-vue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to the warnings in CI
module.exports = { | ||
root: true, | ||
env: { | ||
node: true, | ||
node: true | ||
}, | ||
extends: [ | ||
"plugin:vue/vue3-essential", | ||
"eslint:recommended", | ||
"@vue/typescript/recommended", | ||
"@vue/prettier", | ||
"@vue/prettier/@typescript-eslint", | ||
"@vue/prettier/@typescript-eslint" | ||
], | ||
parserOptions: { | ||
ecmaVersion: 2020, | ||
ecmaVersion: 2020 | ||
}, | ||
ignorePatterns: ["/submodules/*"], | ||
rules: { | ||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off", | ||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", | ||
"comma-dangle": [ | ||
"warn", | ||
{ | ||
arrays: "always-multiline", | ||
objects: "always-multiline", | ||
imports: "always-multiline", | ||
exports: "always-multiline", | ||
functions: "never", | ||
}, | ||
], | ||
}, | ||
"prettier/prettier": "off" | ||
} | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to the warnings in CI
window.addEventListener("keyup", this.onKeyUp); | ||
window.removeEventListener("keyup", this.onKeyUp); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed this, I assumed it was a typo
Related to introlab/opentera-webrtc-ros#37