Compare commits

...

2 Commits

Author SHA1 Message Date
Jason Jean af66f02777 Release 13.9.1 2022-03-16 11:25:15 -04:00
Leosvel Pérez Espinosa 7e7f04ad4c fix(core): fix migrate command to properly handle the packages consolidation (#9352) 2022-03-16 11:22:04 -04:00
3 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nrwl/nx-source",
"version": "13.9.0",
"version": "13.9.1",
"description": "Smart, Fast and Extensible Build System",
"homepage": "https://nx.dev",
"private": true,
+5 -1
View File
@@ -6,7 +6,11 @@ import { output } from '../src/cli/output';
import { detectPackageManager } from '../src/shared/package-manager';
import { Workspace } from '../src/cli/workspace';
if (process.argv[2] === 'new' || process.argv[2] === '_migrate') {
if (
process.argv[2] === 'new' ||
process.argv[2] === '_migrate' ||
process.argv[2] === 'migrate'
) {
require('../src/cli/index');
} else {
const workspace = findWorkspaceRoot(process.cwd());
+1
View File
@@ -51,6 +51,7 @@ export async function invokeCommand(
commandArgs,
isVerbose
);
case 'migrate':
case '_migrate':
return (await import('../commands/migrate')).migrate(
root,