Skip to content

Commit

Permalink
fix: remove unnecessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Jun 4, 2021
1 parent b54d9c9 commit aac02b5
Show file tree
Hide file tree
Showing 5 changed files with 246 additions and 204 deletions.
2 changes: 1 addition & 1 deletion packages/ui/components/ChartExample.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export default {
}
</script>

<style lang="scss">
<style lang="scss" scoped>
.container {
width: 100%;
max-width: 1500px;
Expand Down
3 changes: 1 addition & 2 deletions packages/ui/components/ThemeSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@ export default {
toggleMode() {
if (this.$colorMode.value === this.themes.dark.key) {
this.$colorMode.preference = 'light'
this.currentTheme = this.$colorMode.preference
} else {
this.$colorMode.preference = 'dark'
this.currentTheme = this.$colorMode.preference
}
this.currentTheme = this.$colorMode.preference
},
},
}
Expand Down
12 changes: 1 addition & 11 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,6 @@
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"prettier": "^2.2.1",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
"@nuxtjs/stylelint-module": "^4.0.0"
}
}
20 changes: 0 additions & 20 deletions packages/ui/utils/cropString.js

This file was deleted.

0 comments on commit aac02b5

Please sign in to comment.