Updated dependencies
This commit is contained in:
parent
73c8cf217b
commit
8877b7717a
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"reject": "@types/node,@f-list/fork-ts-checker-webpack-plugin,@f-list/vue-ts,typescript,node-sass,keytar"
|
||||
"reject": "@types/node,@f-list/fork-ts-checker-webpack-plugin,@f-list/vue-ts,typescript,node-sass,keytar,vue,vue-class-component,vue-loader,vue-template-compiler"
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ const data = {
|
|||
Vue.set(vue, module, subState);
|
||||
(<VueState[K]>data[module]) = subState;
|
||||
},
|
||||
watch<T>(getter: (this: VueState) => T, callback: WatchHandler<T>): void {
|
||||
watch<T>(getter: (this: VueState) => T, callback: (n: any, o: any) => void): void {
|
||||
vue.$watch(getter, callback);
|
||||
},
|
||||
async reloadSettings(): Promise<void> {
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import {Component, Prop, Watch} from '@f-list/vue-ts';
|
||||
import Vue from 'vue';
|
||||
import {Component, Prop, Watch} from '@f-list/vue-ts';
|
||||
|
||||
@Component
|
||||
export default class Dropdown extends Vue {
|
||||
|
|
20
package.json
20
package.json
|
@ -11,14 +11,14 @@
|
|||
"@types/bluebird": "^3.5.33",
|
||||
"@types/lodash": "^4.14.164",
|
||||
"@types/node": "^12.12.47",
|
||||
"@types/node-fetch": "^2.5.7",
|
||||
"@types/node-fetch": "^2.5.12",
|
||||
"@types/qs": "^6.9.5",
|
||||
"@types/request-promise": "^4.1.46",
|
||||
"@types/sortablejs": "^1.10.6",
|
||||
"@vue/devtools": "^5.3.3",
|
||||
"any-ascii": "^0.1.7",
|
||||
"any-ascii": "^0.3.0",
|
||||
"async": "^0.9.0",
|
||||
"axios": "^0.21.0",
|
||||
"axios": "^0.21.4",
|
||||
"bluebird": "^3.7.2",
|
||||
"bootstrap": "^4.5.3",
|
||||
"copy-webpack-plugin": "^6.2.1",
|
||||
|
@ -46,22 +46,28 @@
|
|||
"tslib": "^2.0.3",
|
||||
"tslint": "^6.1.3",
|
||||
"typescript": "^3.9.7",
|
||||
"vue": "^2.6.12",
|
||||
"vue-loader": "^15.9.4",
|
||||
"vue-template-compiler": "^2.6.12",
|
||||
"vue": "2.6.12",
|
||||
"vue-loader": "^15.9.8",
|
||||
"vue-template-compiler": "2.6.12",
|
||||
"webpack": "^5.3.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@cliqz/adblocker-electron": "^1.20.5",
|
||||
"jquery": "^3.6.0",
|
||||
"keytar": "~7.5.0",
|
||||
"node-fetch": "^2.6.1"
|
||||
"node-fetch": "^2.6.2"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"appdmg": "^0.6.0",
|
||||
"electron-squirrel-startup": "^1.0.0",
|
||||
"electron-winstaller": "^4.0.1"
|
||||
},
|
||||
"resolutions": {
|
||||
"vue": "2.6.12",
|
||||
"vue-class-component": "6.3.2",
|
||||
"vue-loader": "15.9.8",
|
||||
"vue-template-compiler": "2.6.12"
|
||||
},
|
||||
"scripts": {
|
||||
"postinstall": "electron-rebuild --prebuild-tag-prefix=ignoreprebuilds -f -o keytar"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue