diff --git a/tabby-settings/src/components/settingsTab.component.ts b/tabby-settings/src/components/settingsTab.component.ts index b1cee9f34a41b2005205b3b9815e0b85ab0c1281..fc9ed019b66d69fa43024476c006dac3bc524511 100644 --- a/tabby-settings/src/components/settingsTab.component.ts +++ b/tabby-settings/src/components/settingsTab.component.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import * as yaml from 'js-yaml' -import { debounce } from 'utils-decorators/dist/cjs' +import { debounce } from 'utils-decorators/dist/esm/debounce/debounce' import { Component, Inject, Input, HostBinding, NgZone } from '@angular/core' import { ConfigService, diff --git a/tabby-settings/src/components/windowSettingsTab.component.ts b/tabby-settings/src/components/windowSettingsTab.component.ts index 6fda45d5347cd918c9be69731f28f13f28c610eb..51cbde3af5136ac0472e14bdefb1fd88615f27e6 100644 --- a/tabby-settings/src/components/windowSettingsTab.component.ts +++ b/tabby-settings/src/components/windowSettingsTab.component.ts @@ -1,5 +1,5 @@ /* eslint-disable @typescript-eslint/explicit-module-boundary-types */ -import { debounce } from 'utils-decorators/dist/cjs' +import { debounce } from 'utils-decorators/dist/esm/debounce/debounce' import { Component, Inject, NgZone, Optional } from '@angular/core' import { DockingService, diff --git a/tabby-terminal/src/components/appearanceSettingsTab.component.ts b/tabby-terminal/src/components/appearanceSettingsTab.component.ts index 52192a68739711d3e1f5a05486d0fde79ddbcd36..e33c45c599ee0fe043a2eb273d81998ea5eeff01 100644 --- a/tabby-terminal/src/components/appearanceSettingsTab.component.ts +++ b/tabby-terminal/src/components/appearanceSettingsTab.component.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { Observable, debounceTime, distinctUntilChanged, map } from 'rxjs' -import { debounce } from 'utils-decorators/dist/cjs' +import { debounce } from 'utils-decorators/dist/esm/debounce/debounce' import { Component } from '@angular/core' import { ConfigService, getCSSFontFamily, PlatformService } from 'tabby-core' diff --git a/webpack.plugin.config.js b/webpack.plugin.config.js index 9015030613fcc30b59e38b517bfce20f6875228d..9a756443ba00297cfff91aba405c2a16f0f144ba 100644 --- a/webpack.plugin.config.js +++ b/webpack.plugin.config.js @@ -130,6 +130,7 @@ module.exports = options => { } if (process.env.PLUGIN_BUNDLE_ANALYZER === options.name) { config.plugins.push(bundleAnalyzer) + config.cache = false } return config }