Skip to content

build(deps): bump send and express #1001

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
485 changes: 323 additions & 162 deletions package-lock.json

Unchanged files with check annotations Beta

ProfileEditModal,
SnapshotModal,
AppSidebar,
AppAside,

Check failure on line 50 in src/containers/DefaultContainer.vue

GitHub Actions / lint

The "AppAside" component has been registered but not used
Breadcrumb,
DefaultHeaderProfileDropdown,

Check failure on line 52 in src/containers/DefaultContainer.vue

GitHub Actions / lint

The "DefaultHeaderProfileDropdown" component has been registered but not used
SidebarForm,
SidebarFooter,
SidebarHeader,
export default {
name: 'DefaultHeader',
components: {
AsideToggler,

Check failure on line 25 in src/containers/DefaultHeader.vue

GitHub Actions / lint

The "AsideToggler" component has been registered but not used
AppHeader,
DefaultHeaderProfileDropdown,
SidebarToggler,
this.isFocused = common.toBoolean(this.autofocus);
this.isRequired = common.toBoolean(this.required);
this.isDisabled = common.toBoolean(this.disabled);
this.readonly = common.toBoolean(this.readonly);

Check failure on line 81 in src/forms/BInputGroupFormDatepicker.vue

GitHub Actions / lint

Unexpected mutation of "readonly" prop
},
computed: {
innerValue: {
<b-form-select
:id="`${id}-input`"
v-model="value"

Check failure on line 15 in src/forms/BInputGroupFormSelect.vue

GitHub Actions / lint

Unexpected mutation of "value" prop
:options="options"
:autofocus="isFocused"
:disabled="disabled"
}
createVueApp();
})
.catch(function (error) {

Check failure on line 65 in src/main.js

GitHub Actions / lint

'error' is defined but never used
console.log(
'Cannot retrieve static/config.json from host. This is expected behavior in development environments.',
);
path: 'project',
props: (route) => ({ uuid: route.query.uuid }),
redirect: (to) => {
let { hash, params, query } = to;

Check failure on line 783 in src/router/index.js

GitHub Actions / lint

'hash' is assigned a value but never used

Check failure on line 783 in src/router/index.js

GitHub Actions / lint

'params' is assigned a value but never used
if (query.uuid) {
let uuid = query.uuid;
return { path: '/projects/' + uuid, query: null };
path: 'component',
props: (route) => ({ uuid: route.query.uuid }),
redirect: (to) => {
let { hash, params, query } = to;

Check failure on line 796 in src/router/index.js

GitHub Actions / lint

'hash' is assigned a value but never used

Check failure on line 796 in src/router/index.js

GitHub Actions / lint

'params' is assigned a value but never used
if (query.uuid) {
let uuid = query.uuid;
return { path: '/components/' + uuid, query: null };