Skip to content

Commit

Permalink
fix(react): bump migration version
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed May 5, 2023
1 parent 8861515 commit c2651d1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions packages/react/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@
"description": "Replace @nrwl/react with @nx/react",
"implementation": "./src/migrations/update-16-0-0-add-nx-packages/update-16-0-0-add-nx-packages"
},
"update-16-1-0-remove-package": {
"update-16-2-0-remove-package": {
"cli": "nx",
"version": "16.1.0-beta.0",
"version": "16.2.0-beta.0",
"description": "Remove react-test-renderer from package.json",
"implementation": "./src/migrations/update-16-1-0-remove-package/update-16-1-0-remove-package"
"implementation": "./src/migrations/update-16-2-0-remove-package/update-16-2-0-remove-package"
}
},
"packageJsonUpdates": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Tree, readJson, updateJson } from '@nx/devkit';
import { createTreeWithEmptyWorkspace } from 'nx/src/devkit-testing-exports';
import removePackage from './update-16-1-0-remove-package';
import removePackage from './update-16-2-0-remove-package';

describe('update-16-1-0-remove-package', () => {
describe('update-16-2-0-remove-package', () => {
let tree: Tree;
beforeEach(() => {
tree = createTreeWithEmptyWorkspace();
Expand Down
6 changes: 3 additions & 3 deletions packages/web/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@
"description": "Replace @nrwl/web executors with @nx/webpack and @nx/rollup",
"implementation": "./src/migrations/update-16-0-0-update-executors/update-16-0-0-update-executors"
},
"update-16-1-0-remove-packages": {
"update-16-2-0-remove-packages": {
"cli": "nx",
"version": "16.1.0-beta.0",
"version": "16.2.0-beta.0",
"description": "Remove core-js and regenerator-runtime packages",
"implementation": "./src/migrations/update-16-1-0-remove-packages/update-16-1-0-remove-packages"
"implementation": "./src/migrations/update-16-2-0-remove-packages/update-16-2-0-remove-packages"
}
},
"packageJsonUpdates": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Tree, readJson, updateJson } from '@nx/devkit';
import { createTreeWithEmptyWorkspace } from 'nx/src/devkit-testing-exports';
import removePackages from './update-16-1-0-remove-packages';
import removePackages from './update-16-2-0-remove-packages';

describe('update-16-1-0-remove-packages', () => {
describe('update-16-2-0-remove-packages', () => {
let tree: Tree;
beforeEach(() => {
tree = createTreeWithEmptyWorkspace();
Expand Down

0 comments on commit c2651d1

Please sign in to comment.