Skip to content

Commit c19e6b8

Browse files
authored
chore(repo): update to v2 of self hosted cache packages (#31094)
1 parent d8ad991 commit c19e6b8

File tree

7 files changed

+179
-95
lines changed

7 files changed

+179
-95
lines changed

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
"serveStaticTargetName": "serve-static"
245245
}
246246
},
247-
"@nx/powerpack-enterprise-cloud",
247+
"@nx/enterprise-cloud",
248248
{
249249
"plugin": "@nx/storybook/plugin",
250250
"options": {

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@
8383
"@nx/eslint-plugin": "21.0.0-rc.4",
8484
"@nx/jest": "21.0.0-rc.4",
8585
"@nx/js": "21.0.0-rc.4",
86-
"@nx/key": "21.0.0-beta.0",
86+
"@nx/key": "2.0.0",
8787
"@nx/next": "21.0.0-rc.4",
8888
"@nx/playwright": "21.0.0-rc.4",
89-
"@nx/powerpack-conformance": "21.0.0-beta.0",
90-
"@nx/powerpack-enterprise-cloud": "21.0.0-beta.0",
91-
"@nx/powerpack-license": "21.0.0-beta.0",
89+
"@nx/conformance": "2.0.0",
90+
"@nx/enterprise-cloud": "2.0.0",
91+
"@nx/powerpack-license": "2.0.0",
9292
"@nx/react": "21.0.0-rc.4",
9393
"@nx/rsbuild": "21.0.0-rc.4",
9494
"@nx/rspack": "21.0.0-rc.4",

pnpm-lock.yaml

Lines changed: 170 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/workspace-plugin/src/conformance-rules/blog-cover-image/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { sync as globSync } from 'glob';
66
import {
77
createConformanceRule,
88
type ProjectFilesViolation,
9-
} from '@nx/powerpack-conformance';
9+
} from '@nx/conformance';
1010

1111
export default createConformanceRule<{ mdGlobPattern: string }>({
1212
name: 'blog-cover-image',

tools/workspace-plugin/src/conformance-rules/blog-description/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { sync as globSync } from 'glob';
66
import {
77
createConformanceRule,
88
type ProjectFilesViolation,
9-
} from '@nx/powerpack-conformance';
9+
} from '@nx/conformance';
1010

1111
export default createConformanceRule<{ mdGlobPattern: string }>({
1212
name: 'blog-description',

tools/workspace-plugin/src/conformance-rules/migration-groups/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { readJsonFile, workspaceRoot } from '@nx/devkit';
22
import {
33
createConformanceRule,
44
type ProjectFilesViolation,
5-
} from '@nx/powerpack-conformance';
5+
} from '@nx/conformance';
66
import { existsSync } from 'node:fs';
77
import { join } from 'node:path';
88
import { satisfies } from 'semver';

tools/workspace-plugin/src/conformance-rules/project-package-json/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { readJsonFile, workspaceRoot } from '@nx/devkit';
22
import {
33
createConformanceRule,
44
type ProjectFilesViolation,
5-
} from '@nx/powerpack-conformance';
5+
} from '@nx/conformance';
66
import { existsSync } from 'node:fs';
77
import { join } from 'node:path';
88

0 commit comments

Comments
 (0)