diff --git a/tabby-settings/src/components/settingsTab.component.ts b/tabby-settings/src/components/settingsTab.component.ts index b1cee9f3..fc9ed019 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 6fda45d5..51cbde3a 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 52192a68..e33c45c5 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 90150306..9a756443 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 }