@nx/remix 20.4.4 → 20.5.0-beta.1

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.4.4",
3
+ "version": "20.5.0-beta.1",
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,9 +29,9 @@
29
29
  "migrations": "./migrations.json"
30
30
  },
31
31
  "dependencies": {
32
- "@nx/devkit": "20.4.4",
33
- "@nx/js": "20.4.4",
34
- "@nx/react": "20.4.4",
32
+ "@nx/devkit": "20.5.0-beta.1",
33
+ "@nx/js": "20.5.0-beta.1",
34
+ "@nx/react": "20.5.0-beta.1",
35
35
  "tslib": "^2.3.1",
36
36
  "@phenomnomnominal/tsquery": "~5.0.1"
37
37
  },
@@ -115,6 +115,7 @@ async function remixApplicationGeneratorInternal(tree, _options) {
115
115
  skipPackageJson: false,
116
116
  skipFormat: true,
117
117
  addPlugin: true,
118
+ compiler: options.useTsSolution ? 'swc' : undefined,
118
119
  });
119
120
  const projectConfig = (0, devkit_1.readProjectConfiguration)(tree, options.projectName);
120
121
  if (projectConfig.targets?.['test']?.options) {