Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @kkt/scope-plugin-options to v6.8.1 - autoclosed #15

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 12, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@kkt/scope-plugin-options 6.2.1 -> 6.8.1 age adoption passing confidence

Release Notes

kktjs/kkt

v6.8.1

Compare Source

v6.8.0

Compare Source

v6.7.2

Compare Source

v6.7.1

Compare Source

  • 💄 chore: add request dependency. b7f5fb6

v6.7.0

Compare Source


v6.6.3

Compare Source

v6.6.2

Compare Source

  • 🐞 fix(kkt): Fix cross domain issue. 21c84b0

v6.6.1

Compare Source

  • 💄 chore: update workflows/ci.yml abc0c1e
  • 💄 chore(bundle-react-component-tsx): update tsconfig.json 75346d0
  • 🐞 fix(kkt): Fix KKT_CLEAR_CONSOLE evn invalid. c1d6d14

v6.6.0

Compare Source

  • 🌟 feat: Add override DevServerConfig handle. 2ab8df0
  • 💄 chore(example): update dependency uiw to v4.7.7 #​156 d05e89f
  • 🐞 fix(kkt): Fix --no-open-browser/--no-clear-console invalid. 69bd316
  • 🌟 feat: Modify client server port. e345037

v6.5.1

Compare Source

  • 📖 doc(kkt): Update README.md ce55778
  • 💄 chore(deps): update dependency tsbb to v2.0.3 #​157 8cdd541
  • 🐞 fix: The kkt command add .catch handle. 6d7cf79
  • 💄 chore(deps): update dependency tsbb to v2.0.4 #​157 7a5ef42
  • 💄 chore: update scripts. fb69d39
  • 💄 chore(deps): update dependency tsbb to v2.0.5 eb1db32

v6.5.0

Compare Source

  • 📖 doc(kkt): Update README.md 71d5902
  • 🌟 feat(kkt): Enhanced devServer api. 8c22ff7
  • 💄 chore: update .github/workflows/ci.yml 3c2022c
import express from 'express';
import { ParsedArgs } from 'minimist';
import { Configuration } from 'webpack';
import WebpackDevServer from 'webpack-dev-server';
import { LoaderConfOptions, MockerAPIOptions, DevServerOptions } from 'kkt';

type KKTRC = {
  proxySetup?: (app: express.Application) => MockerAPIOptions;
-  devServer?: (config: WebpackDevServer.Configuration) => WebpackDevServer.Configuration;
+  devServer?: (config: WebpackDevServer.Configuration, options: DevServerOptions) => WebpackDevServer.Configuration;
  default?: (conf: Configuration, evn: string, options: LoaderConfOptions) => Configuration | Promise<Configuration>;
};

v6.4.0

Compare Source

  • 💄 chore: update .github/workflows/ci.yml f30b5d7
  • 🐞 fix(kkt): Update command help. b0e47db
  • 🐞 fix(kkt): Update command help. 861d554
  • 📖 doc(kkt): Update README.md b9f35e5
  • 🌟 feat(kkt): Override webpack config support promise. deba4bc
  • 🆎 type(kkt): Modify types. f48162e
  • 💄 chore:(deps): update denpendency tsbb to v2.0.2 4b0ef18
  • 💄 chore(react-component-tsx): update website/react-app-env.d.ts 3c64d18
import express from 'express';
import { ParsedArgs } from 'minimist';
import { Configuration } from 'webpack';
import WebpackDevServer from 'webpack-dev-server';
import { LoaderConfOptions, MockerAPIOptions } from 'kkt';

type KKTRC = {
  proxySetup?: (app: express.Application) => MockerAPIOptions;
  devServer?: (config: WebpackDevServer.Configuration) => WebpackDevServer.Configuration;
-  default?: (conf: Configuration, evn: string, options: LoaderConfOptions) => Configuration;
+  default?: (conf: Configuration, evn: string, options: LoaderConfOptions) => Configuration | Promise<Configuration>;
};

v6.3.0

Compare Source

  • 🐞 fix(deps): update dependency web-vitals to v1.1.0 a244baa @​renovate-bot
  • 💄 chore(react-component-tsx): Update index.html 822e12a
  • 💄 chore(react-component-tsx): Update react-app-env.d.ts 55695a3
  • 🌟 feat(kkt): Add --no-clear-console args. 448aaf7
  • 📄 Merge branch 'master' of github.com:kktjs/kkt e37978f
  • 📖 doc: Update README.md 295ab41
  • 💄 chore(react-component-tsx): Update kkt config. 67ed0c5
  • 💄 chore: remove README.md 66c50d2
  • 💄 chore: Link README.md 8836155
- export const devServer = (configFunction: DevServerConfigFunction) => {
-   return (proxy: WebpackDevServer.ProxyConfigArrayItem[], allowedHost: string) => {
-     // Create the default config by calling configFunction with the proxy/allowedHost parameters
-     const config = configFunction(proxy, allowedHost);
-     // Return your customised Webpack Development Server config.
-     return config;
-   }
- }
+ export const devServer = (config: WebpackDevServer.Configuration) => {
+   // Return your customised Webpack Development Server config.
+   return config;
+ };
import express from 'express';
import { ParsedArgs } from 'minimist';
import WebpackDevServer from 'webpack-dev-server';
import { Configuration } from 'webpack';
import { LoaderConfOptions, DevServerConfigFunction, MockerAPIOptions } from 'kkt';

type KKTRC = {
  proxySetup?: (app: express.Application) => MockerAPIOptions;
-  devServer?: (configFunction: DevServerConfigFunction, evn: string) => DevServerConfigFunction;
+  devServer?: (config: WebpackDevServer.Configuration) => WebpackDevServer.Configuration;
  default?: (conf: Configuration, evn: string, options: LoaderConfOptions) => Configuration;
};

- type DevServerConfigFunction = (proxy: WebpackDevServer.ProxyConfigArrayItem[], allowedHost: string)
-    => WebpackDevServer.Configuration;
Usage: kkt [start|build|test] [--help|h]

Displays help information.

Options:

  --version, -v Show version number
  --help, -h Displays help information.
  --no-open-browser Do not open in browser.
+  --no-clear-console Do not clear the command line information.

Example:

$ kkt build
$ kkt build --app-src ./website
$ kkt start
$ kkt start --no-open-browser
+ $ kkt start --no-clear-console
$ kkt start --app-src ./website
$ kkt test

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 66d9c7c to 35734e4 Compare January 14, 2021 04:12
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.0.12 chore(deps): update dependency @kkt/scope-plugin-options to v6.1.0 Jan 14, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 35734e4 to 29626b2 Compare January 14, 2021 10:22
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.1.0 chore(deps): update dependency @kkt/scope-plugin-options to v6.1.1 Jan 14, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 29626b2 to 5944ef5 Compare January 18, 2021 08:47
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.1.1 chore(deps): update dependency @kkt/scope-plugin-options to v6.1.2 Jan 18, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 5944ef5 to dea97a8 Compare January 18, 2021 15:53
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.1.2 chore(deps): update dependency @kkt/scope-plugin-options to v6.2.0 Jan 18, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from dea97a8 to 1a75918 Compare January 21, 2021 05:37
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.2.0 chore(deps): update dependency @kkt/scope-plugin-options to v6.2.1 Jan 21, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 1a75918 to bba72f4 Compare January 22, 2021 11:03
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.2.1 chore(deps): update dependency @kkt/scope-plugin-options to v6.3.0 Jan 22, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from bba72f4 to b868716 Compare January 22, 2021 17:33
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.3.0 chore(deps): update dependency @kkt/scope-plugin-options to v6.4.0 Jan 22, 2021
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.4.0 chore(deps): update dependency @kkt/scope-plugin-options to v6.5.0 Jan 22, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch 2 times, most recently from 0eaf7e8 to e11fca6 Compare January 23, 2021 22:40
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.5.0 chore(deps): update dependency @kkt/scope-plugin-options to v6.5.1 Jan 23, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from e11fca6 to d770216 Compare January 25, 2021 11:22
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.5.1 chore(deps): update dependency @kkt/scope-plugin-options to v6.6.1 Jan 25, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from d770216 to f77dd21 Compare January 25, 2021 13:14
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.6.1 chore(deps): update dependency @kkt/scope-plugin-options to v6.6.2 Jan 25, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from f77dd21 to 299bf43 Compare February 14, 2021 10:39
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.6.2 chore(deps): update dependency @kkt/scope-plugin-options to v6.6.3 Feb 14, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 299bf43 to 58e552b Compare February 25, 2021 08:58
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.6.3 chore(deps): update dependency @kkt/scope-plugin-options to v6.7.1 Feb 25, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 58e552b to 715906a Compare February 25, 2021 10:42
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.7.1 chore(deps): update dependency @kkt/scope-plugin-options to v6.7.2 Feb 25, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 715906a to 0521806 Compare March 12, 2021 19:22
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.7.2 chore(deps): update dependency @kkt/scope-plugin-options to v6.8.0 Mar 12, 2021
@renovate renovate bot force-pushed the renovate/kkt-scope-plugin-options-6.x branch from 0521806 to 872521d Compare March 23, 2021 10:04
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.8.0 chore(deps): update dependency @kkt/scope-plugin-options to v6.8.1 Mar 23, 2021
@renovate renovate bot changed the title chore(deps): update dependency @kkt/scope-plugin-options to v6.8.1 chore(deps): update dependency @kkt/scope-plugin-options to v6.8.1 - autoclosed Mar 29, 2021
@renovate renovate bot closed this Mar 29, 2021
@renovate renovate bot deleted the renovate/kkt-scope-plugin-options-6.x branch March 29, 2021 07:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant