@nx/remix 20.0.0-beta.0 → 20.0.0-beta.2

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/remix",
3
- "version": "20.0.0-beta.0",
3
+ "version": "20.0.0-beta.2",
4
4
  "description": "The Remix plugin for Nx contains executors and generators for managing Remix applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Jest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, routes, loaders, 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",
@@ -29,12 +29,12 @@
29
29
  "migrations": "./migrations.json"
30
30
  },
31
31
  "dependencies": {
32
- "@nx/devkit": "20.0.0-beta.0",
33
- "@nx/js": "20.0.0-beta.0",
34
- "@nx/react": "20.0.0-beta.0",
32
+ "@nx/devkit": "20.0.0-beta.2",
33
+ "@nx/js": "20.0.0-beta.2",
34
+ "@nx/react": "20.0.0-beta.2",
35
35
  "tslib": "^2.3.1",
36
36
  "@phenomnomnominal/tsquery": "~5.0.1",
37
- "@nrwl/remix": "20.0.0-beta.0"
37
+ "@nrwl/remix": "20.0.0-beta.2"
38
38
  },
39
39
  "peerDependencies": {},
40
40
  "publishConfig": {
@@ -3,13 +3,10 @@ import { Linter, LinterType } from '@nx/eslint';
3
3
  export interface StorybookConfigurationSchema {
4
4
  project: string;
5
5
  interactionTests?: boolean;
6
- configureCypress: boolean;
7
6
  generateStories?: boolean;
8
- generateCypressSpecs?: boolean;
9
7
  js?: boolean;
10
8
  tsConfiguration?: boolean;
11
9
  linter?: Linter | LinterType;
12
- cypressDirectory?: string;
13
10
  ignorePaths?: string[];
14
11
  configureTestRunner?: boolean;
15
12
  configureStaticServe?: boolean;
@@ -26,11 +26,6 @@
26
26
  "alias": ["configureTestRunner"],
27
27
  "default": true
28
28
  },
29
- "configureCypress": {
30
- "type": "boolean",
31
- "description": "Run the cypress-configure generator.",
32
- "x-deprecated": "Use interactionTests instead. This option will be removed in v20."
33
- },
34
29
  "generateStories": {
35
30
  "type": "boolean",
36
31
  "description": "Automatically generate `*.stories.ts` files for components declared in this project?",
@@ -38,11 +33,6 @@
38
33
  "default": true,
39
34
  "x-priority": "important"
40
35
  },
41
- "generateCypressSpecs": {
42
- "type": "boolean",
43
- "description": "Automatically generate test files in the Cypress E2E app generated by the `cypress-configure` generator.",
44
- "x-deprecated": "Use interactionTests instead. This option will be removed in v20."
45
- },
46
36
  "configureStaticServe": {
47
37
  "type": "boolean",
48
38
  "description": "Specifies whether to configure a static file server target for serving storybook. Helpful for speeding up CI build/test times.",
@@ -50,11 +40,6 @@
50
40
  "default": true,
51
41
  "x-priority": "important"
52
42
  },
53
- "cypressDirectory": {
54
- "type": "string",
55
- "description": "A directory where the Cypress project will be placed. Placed at the root by default.",
56
- "x-deprecated": "Use interactionTests instead. This option will be removed in v20."
57
- },
58
43
  "js": {
59
44
  "type": "boolean",
60
45
  "description": "Generate JavaScript story files rather than TypeScript story files.",