@nx/react 20.7.0-canary.20250319-59624c2 → 20.7.0-canary.20250321-cad4d26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/react",
3
- "version": "20.7.0-canary.20250319-59624c2",
3
+ "version": "20.7.0-canary.20250321-cad4d26",
4
4
  "private": false,
5
5
  "description": "The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, components, hooks, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -38,11 +38,11 @@
38
38
  "minimatch": "9.0.3",
39
39
  "picocolors": "^1.1.0",
40
40
  "tslib": "^2.3.0",
41
- "@nx/devkit": "20.7.0-canary.20250319-59624c2",
42
- "@nx/js": "20.7.0-canary.20250319-59624c2",
43
- "@nx/eslint": "20.7.0-canary.20250319-59624c2",
44
- "@nx/web": "20.7.0-canary.20250319-59624c2",
45
- "@nx/module-federation": "20.7.0-canary.20250319-59624c2",
41
+ "@nx/devkit": "20.7.0-canary.20250321-cad4d26",
42
+ "@nx/js": "20.7.0-canary.20250321-cad4d26",
43
+ "@nx/eslint": "20.7.0-canary.20250321-cad4d26",
44
+ "@nx/web": "20.7.0-canary.20250321-cad4d26",
45
+ "@nx/module-federation": "20.7.0-canary.20250321-cad4d26",
46
46
  "express": "^4.21.2",
47
47
  "http-proxy-middleware": "^3.0.3",
48
48
  "semver": "^7.6.3"
@@ -1 +0,0 @@
1
- export declare function formatFile(content: any, ...values: any[]): string;
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.formatFile = formatFile;
4
- const prettier_1 = require("prettier");
5
- const devkit_1 = require("@nx/devkit");
6
- function formatFile(content, ...values) {
7
- return (0, prettier_1.format)((0, devkit_1.stripIndents)(content, values), {
8
- singleQuote: true,
9
- parser: 'typescript',
10
- });
11
- }