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 to v6.5.1 #82

Merged
merged 1 commit into from
Jan 25, 2021
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 12, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
kkt 6.2.1 -> 6.5.1 age adoption passing confidence

Release Notes

kktjs/kkt

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-6.x branch from 2610fb2 to 0066cb0 Compare January 14, 2021 05:47
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.0.12 chore(deps): update dependency kkt to v6.1.0 Jan 14, 2021
@renovate renovate bot force-pushed the renovate/kkt-6.x branch from 0066cb0 to 1b3f951 Compare January 14, 2021 10:35
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.1.0 chore(deps): update dependency kkt to v6.1.1 Jan 14, 2021
@renovate renovate bot force-pushed the renovate/kkt-6.x branch from 1b3f951 to bc0f945 Compare January 18, 2021 08:07
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.1.1 chore(deps): update dependency kkt to v6.1.2 Jan 18, 2021
@renovate renovate bot force-pushed the renovate/kkt-6.x branch from bc0f945 to a401c16 Compare January 18, 2021 14:20
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.1.2 chore(deps): update dependency kkt to v6.2.0 Jan 18, 2021
@renovate renovate bot force-pushed the renovate/kkt-6.x branch from a401c16 to bb645eb Compare January 21, 2021 06:44
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.2.0 chore(deps): update dependency kkt to v6.2.1 Jan 21, 2021
@renovate renovate bot force-pushed the renovate/kkt-6.x branch from bb645eb to 73e4714 Compare January 22, 2021 11:32
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.2.1 chore(deps): update dependency kkt to v6.3.0 Jan 22, 2021
@renovate renovate bot force-pushed the renovate/kkt-6.x branch from 73e4714 to e974b80 Compare January 22, 2021 18:47
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.3.0 chore(deps): update dependency kkt to v6.5.0 Jan 22, 2021
@renovate renovate bot force-pushed the renovate/kkt-6.x branch from e974b80 to f1aa341 Compare January 23, 2021 21:51
@renovate renovate bot changed the title chore(deps): update dependency kkt to v6.5.0 chore(deps): update dependency kkt to v6.5.1 Jan 23, 2021
@jaywcjlove jaywcjlove merged commit 518eff5 into master Jan 25, 2021
@jaywcjlove jaywcjlove deleted the renovate/kkt-6.x branch January 25, 2021 01:27
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.

2 participants