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

fix: deprecate migrate package #2313

Merged
merged 5 commits into from
Jan 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cz-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
scopes: [],
// sort type values in asc
types: [
{ value: 'ast', name: 'ast: init, migrate, add, etc' },
{ value: 'ast', name: 'ast: init, add, etc' },
{ value: 'break', name: 'break: Changes that break the behaviour of the cli' },
{ value: 'chore', name: 'chore: Updating deps, docs, linting, etc' },
{ value: 'cli', name: 'cli: Core CLI things' },
Expand Down
207 changes: 0 additions & 207 deletions MIGRATE.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Thus, webpack CLI provides different commands for many common tasks.

- [`webpack-cli init`](./packages/init/README.md#webpack-cli-init) - Create a new webpack configuration.
- [`webpack-cli info`](./packages/info/README.md#webpack-cli-info) - Returns information related to the local environment.
- [`webpack-cli migrate`](./packages/migrate/README.md#webpack-cli-migrate) - Migrate project from one version to another.
- [`webpack-cli migrate`](https://www.npmjs.com/package/@webpack-cli/migrate) - Migrate project from one version to another.
anshumanv marked this conversation as resolved.
Show resolved Hide resolved
- [`webpack-cli plugin`](./packages/generators#generators) - Initiate new plugin project.
- [`webpack-cli loader`](./packages/generators#generators) - Initiate new loader project.
- [`webpack-cli serve`](./packages/serve/README.md#webpack-cli-serve) - Use webpack with a development server that provides live reloading.
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@webpack-cli/migrate": "^1.1.2",
"colorette": "^1.2.1",
"commitlint": "^11.0.0",
"commitlint-config-cz": "^0.13.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This folder is the collection of those packages.
1. [generators](https://github.com/webpack/webpack-cli/tree/master/packages/generators)
2. [info](https://github.com/webpack/webpack-cli/tree/master/packages/info)
3. [init](https://github.com/webpack/webpack-cli/tree/master/packages/init)
4. [migrate](https://github.com/webpack/webpack-cli/tree/master/packages/migrate)
4. [migrate](https://www.npmjs.com/package/@webpack-cli/migrate)
5. [serve](https://github.com/webpack/webpack-cli/tree/master/packages/serve)
6. [utils](https://github.com/webpack/webpack-cli/tree/master/packages/utils)
7. [webpack-cli](https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli)
Expand Down
57 changes: 0 additions & 57 deletions packages/migrate/CHANGELOG.md

This file was deleted.

35 changes: 0 additions & 35 deletions packages/migrate/README.md

This file was deleted.

Loading