@nrwl/react 13.10.0-beta.9 → 13.10.0-rc.0

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": "@nrwl/react",
3
- "version": "13.10.0-beta.9",
3
+ "version": "13.10.0-rc.0",
4
4
  "description": "The React plugin 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, 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.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,14 +31,14 @@
31
31
  "dependencies": {
32
32
  "@babel/core": "^7.15.0",
33
33
  "@babel/preset-react": "^7.14.5",
34
- "@nrwl/cypress": "13.10.0-beta.9",
35
- "@nrwl/devkit": "13.10.0-beta.9",
36
- "@nrwl/jest": "13.10.0-beta.9",
37
- "@nrwl/js": "13.10.0-beta.9",
38
- "@nrwl/linter": "13.10.0-beta.9",
39
- "@nrwl/storybook": "13.10.0-beta.9",
40
- "@nrwl/web": "13.10.0-beta.9",
41
- "@nrwl/workspace": "13.10.0-beta.9",
34
+ "@nrwl/cypress": "13.10.0-rc.0",
35
+ "@nrwl/devkit": "13.10.0-rc.0",
36
+ "@nrwl/jest": "13.10.0-rc.0",
37
+ "@nrwl/js": "13.10.0-rc.0",
38
+ "@nrwl/linter": "13.10.0-rc.0",
39
+ "@nrwl/storybook": "13.10.0-rc.0",
40
+ "@nrwl/web": "13.10.0-rc.0",
41
+ "@nrwl/workspace": "13.10.0-rc.0",
42
42
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
43
43
  "@svgr/webpack": "^6.1.2",
44
44
  "chalk": "4.1.0",
@@ -2,4 +2,4 @@ import { Schema } from './schema';
2
2
  import { GeneratorCallback, Tree } from '@nrwl/devkit';
3
3
  export declare function applicationGenerator(host: Tree, schema: Schema): Promise<GeneratorCallback>;
4
4
  export default applicationGenerator;
5
- export declare const applicationSchematic: (options: Schema) => (tree: any, context: any) => Promise<any>;
5
+ export declare const applicationSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
@@ -2,4 +2,4 @@ import { Schema } from './schema';
2
2
  import { GeneratorCallback, Tree } from '@nrwl/devkit';
3
3
  export declare function componentGenerator(host: Tree, schema: Schema): Promise<GeneratorCallback>;
4
4
  export default componentGenerator;
5
- export declare const componentSchematic: (options: Schema) => (tree: any, context: any) => Promise<any>;
5
+ export declare const componentSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
@@ -10,4 +10,4 @@ export declare function componentCypressGenerator(host: Tree, schema: CreateComp
10
10
  export declare function getArgsDefaultValue(property: ts.SyntaxKind): string;
11
11
  export declare function createComponentSpecFile(tree: Tree, { project, componentPath, js, cypressProject }: CreateComponentSpecFileSchema): void;
12
12
  export default componentCypressGenerator;
13
- export declare const componentCypressSchematic: (options: CreateComponentSpecFileSchema) => (tree: any, context: any) => Promise<any>;
13
+ export declare const componentCypressSchematic: (generatorOptions: CreateComponentSpecFileSchema) => (tree: any, context: any) => Promise<any>;
@@ -8,4 +8,4 @@ export declare function getArgsDefaultValue(property: ts.SyntaxKind): string;
8
8
  export declare function createComponentStoriesFile(host: Tree, { project, componentPath }: CreateComponentStoriesFileSchema): void;
9
9
  export declare function componentStoryGenerator(host: Tree, schema: CreateComponentStoriesFileSchema): Promise<void>;
10
10
  export default componentStoryGenerator;
11
- export declare const componentStorySchematic: (options: CreateComponentStoriesFileSchema) => (tree: any, context: any) => Promise<any>;
11
+ export declare const componentStorySchematic: (generatorOptions: CreateComponentStoriesFileSchema) => (tree: any, context: any) => Promise<any>;
@@ -2,4 +2,4 @@ import { Tree } from '@nrwl/devkit';
2
2
  import { Schema } from './schema';
3
3
  export declare function hookGenerator(host: Tree, schema: Schema): Promise<void>;
4
4
  export default hookGenerator;
5
- export declare const hookSchematic: (options: Schema) => (tree: any, context: any) => Promise<any>;
5
+ export declare const hookSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
@@ -2,4 +2,4 @@ import { InitSchema } from './schema';
2
2
  import { GeneratorCallback, Tree } from '@nrwl/devkit';
3
3
  export declare function reactInitGenerator(host: Tree, schema: InitSchema): Promise<GeneratorCallback>;
4
4
  export default reactInitGenerator;
5
- export declare const reactInitSchematic: (options: InitSchema) => (tree: any, context: any) => Promise<any>;
5
+ export declare const reactInitSchematic: (generatorOptions: InitSchema) => (tree: any, context: any) => Promise<any>;
@@ -12,4 +12,4 @@ export interface NormalizedSchema extends Schema {
12
12
  }
13
13
  export declare function libraryGenerator(host: Tree, schema: Schema): Promise<GeneratorCallback>;
14
14
  export default libraryGenerator;
15
- export declare const librarySchematic: (options: Schema) => (tree: any, context: any) => Promise<any>;
15
+ export declare const librarySchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
@@ -2,4 +2,4 @@ import { Schema } from './schema';
2
2
  import { Tree } from '@nrwl/devkit';
3
3
  export declare function reduxGenerator(host: Tree, schema: Schema): Promise<import("@nrwl/devkit").GeneratorCallback>;
4
4
  export default reduxGenerator;
5
- export declare const reduxSchematic: (options: Schema) => (tree: any, context: any) => Promise<any>;
5
+ export declare const reduxSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
@@ -9,4 +9,4 @@ export declare function projectRootPath(tree: Tree, sourceRoot: string, projectT
9
9
  export declare function createAllStories(tree: Tree, projectName: string, generateCypressSpecs: boolean, js: boolean, cypressProject?: string): Promise<void>;
10
10
  export declare function storiesGenerator(host: Tree, schema: StorybookStoriesSchema): Promise<void>;
11
11
  export default storiesGenerator;
12
- export declare const storiesSchematic: (options: StorybookStoriesSchema) => (tree: any, context: any) => Promise<any>;
12
+ export declare const storiesSchematic: (generatorOptions: StorybookStoriesSchema) => (tree: any, context: any) => Promise<any>;
@@ -2,4 +2,4 @@ import { StorybookConfigureSchema } from './schema';
2
2
  import { Tree } from '@nrwl/devkit';
3
3
  export declare function storybookConfigurationGenerator(host: Tree, schema: StorybookConfigureSchema): Promise<import("@nrwl/devkit").GeneratorCallback>;
4
4
  export default storybookConfigurationGenerator;
5
- export declare const storybookConfigurationSchematic: (options: StorybookConfigureSchema) => (tree: any, context: any) => Promise<any>;
5
+ export declare const storybookConfigurationSchematic: (generatorOptions: StorybookConfigureSchema) => (tree: any, context: any) => Promise<any>;
@@ -2,4 +2,4 @@ import { StorybookMigrateDefault5to6Schema } from './schema';
2
2
  import { Tree } from '@nrwl/devkit';
3
3
  export declare function storybookMigration5to6Generator(host: Tree, schema: StorybookMigrateDefault5to6Schema): import("@nrwl/devkit").GeneratorCallback;
4
4
  export default storybookMigration5to6Generator;
5
- export declare const storybookMigration5to6Schematic: (options: StorybookMigrateDefault5to6Schema) => (tree: any, context: any) => Promise<any>;
5
+ export declare const storybookMigration5to6Schematic: (generatorOptions: StorybookMigrateDefault5to6Schema) => (tree: any, context: any) => Promise<any>;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.babelPluginStyledComponentsVersion = exports.eslintPluginReactHooksVersion = exports.eslintPluginReactVersion = exports.eslintPluginJsxA11yVersion = exports.eslintPluginImportVersion = exports.reactTestRendererVersion = exports.reactReduxVersion = exports.reduxjsToolkitVersion = exports.testingLibraryReactHooksVersion = exports.testingLibraryReactVersion = exports.typesReactRouterDomVersion = exports.reactRouterDomVersion = exports.styledJsxVersion = exports.emotionBabelPlugin = exports.emotionReactVersion = exports.emotionStyledVersion = exports.typesStyledComponentsVersion = exports.styledComponentsVersion = exports.typesReactIsVersion = exports.typesReactDomVersion = exports.typesReactVersion = exports.reactIsVersion = exports.reactDomVersion = exports.reactVersion = exports.nxVersion = void 0;
4
- exports.nxVersion = '13.10.0-beta.9';
4
+ exports.nxVersion = '13.10.0-rc.0';
5
5
  exports.reactVersion = '18.0.0';
6
6
  exports.reactDomVersion = '18.0.0';
7
7
  exports.reactIsVersion = '18.0.0';