Skip to content

Commit

Permalink
fix(nx-flutter): remove wrong dependency on common-jvm
Browse files Browse the repository at this point in the history
  • Loading branch information
tinesoft committed Oct 27, 2023
1 parent c87be7f commit e146bef
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/nx-flutter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"js-yaml": "^4.1.0",
"tslib": "^2.6.1",
"@nx/workspace": "17.0.1",
"@nxrocks/common-jvm": "*",
"@nxrocks/common": "*"
},
"typings": "./src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-flutter/src/generators/project/generator.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Tree, addProjectConfiguration, joinPathFragments } from '@nx/devkit';
import { addPluginToNxJson } from '@nxrocks/common-jvm';
import { addPluginToNxJson } from '@nxrocks/common';

import {
normalizeOptions,
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-flutter/src/utils/deps-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
getProjectFilePath,
getProjectRoot,
PackageInfo,
} from '@nxrocks/common-jvm';
} from '@nxrocks/common';
import {ProjectConfiguration } from '@nx/devkit';

interface Pubspec {
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-flutter/src/utils/flutter-utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ProjectConfiguration } from '@nx/devkit';
import { fileExists } from '@nx/workspace/src/utilities/fileutils';
import { getProjectFilePath } from '@nxrocks/common-jvm';
import { getProjectFilePath } from '@nxrocks/common';
import { execSync } from 'child_process';
import { NormalizedSchema } from '../generators/project/schema';

Expand Down

0 comments on commit e146bef

Please sign in to comment.