From e9defa2c76f988de837702a1cd8272bfdde1cd0a Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Thu, 23 Jan 2020 21:38:17 +0530 Subject: [PATCH 1/2] docs: update info about migrate command --- .github/CONTRIBUTING.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9fe2bc4fa62..c48406c16a6 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -262,10 +262,8 @@ For more information about what each part of the template mean, head up to the d ## Migrate with the CLI -This is a new feature in development for the CLI. - ```sh -webpack --migrate +webpack migrate ``` The expected result of the above command is to take the mentioned `webpack` configuration and create a new configuration file which is compatible with webpack 2. From 9a29d824ba41a28752928ad7e6f947b7f958e7dd Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Thu, 30 Jan 2020 23:32:09 +0530 Subject: [PATCH 2/2] fix: typo --- packages/utils/npm-packages-exists.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/utils/npm-packages-exists.ts b/packages/utils/npm-packages-exists.ts index 521788a85e7..6ef302b6140 100644 --- a/packages/utils/npm-packages-exists.ts +++ b/packages/utils/npm-packages-exists.ts @@ -13,7 +13,7 @@ const WEBPACK_SCAFFOLD_PREFIX = "webpack-scaffold"; * on npm and throws an error if it is not. * * @param {String[]} pkg - Array of packages to check existence of - * @returns {Array} resolvePackages - Returns an process to install the packages + * @returns {Array} resolvePackages - Returns a process to install the packages */ export default function npmPackagesExists(pkg: string[]): void {