Use deep imports for importing lodash to make tree shaking easier
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-03-02 22:37:36 +01:00
parent aeba5651af
commit 3c3767a91e
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
9 changed files with 12 additions and 9 deletions

View File

@ -33,7 +33,7 @@
</template>
<script>
import {differenceWith} from 'lodash'
import differenceWith from 'lodash'
import multiselect from 'vue-multiselect'
import UserModel from '../../../models/user'

View File

@ -35,7 +35,7 @@
</template>
<script>
import { differenceWith } from 'lodash'
import differenceWith from 'lodash'
import multiselect from 'vue-multiselect'
import LabelService from '../../../services/label'

View File

@ -1,4 +1,6 @@
import {defaults, omitBy, isNil} from 'lodash'
import defaults from 'lodash'
import omitBy from 'lodash'
import isNil from 'lodash'
export default class AbstractModel {

View File

@ -1,5 +1,5 @@
import TeamShareBaseModel from './teamShareBase'
import {merge} from 'lodash'
import merge from 'lodash'
export default class TeamListModel extends TeamShareBaseModel {
defaults() {

View File

@ -1,5 +1,5 @@
import UserModel from './user'
import {merge} from 'lodash'
import merge from 'lodash'
export default class TeamMemberModel extends UserModel {
defaults() {

View File

@ -1,5 +1,5 @@
import TeamShareBaseModel from './teamShareBase'
import {merge} from 'lodash'
import merge from 'lodash'
export default class TeamNamespaceModel extends TeamShareBaseModel {
defaults() {

View File

@ -1,5 +1,5 @@
import UserShareBaseModel from './userShareBase'
import {merge} from 'lodash'
import merge from 'lodash'
// This class extends the user share model with a 'rights' parameter which is used in sharing
export default class UserListModel extends UserShareBaseModel {

View File

@ -1,5 +1,5 @@
import UserShareBaseModel from "./userShareBase";
import {merge} from 'lodash'
import merge from 'lodash'
// This class extends the user share model with a 'rights' parameter which is used in sharing
export default class UserNamespaceModel extends UserShareBaseModel {

View File

@ -1,5 +1,6 @@
import axios from 'axios'
import {reduce, replace} from 'lodash'
import reduce from 'lodash'
import replace from 'lodash'
let config = require('../../public/config.json')