@nx/remix 21.6.5 → 21.6.7

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": "21.6.5",
3
+ "version": "21.6.7",
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,15 +29,15 @@
29
29
  "migrations": "./migrations.json"
30
30
  },
31
31
  "dependencies": {
32
- "@nx/devkit": "21.6.5",
33
- "@nx/js": "21.6.5",
34
- "@nx/react": "21.6.5",
35
- "@nx/workspace": "21.6.5",
32
+ "@nx/devkit": "21.6.7",
33
+ "@nx/js": "21.6.7",
34
+ "@nx/react": "21.6.7",
35
+ "@nx/workspace": "21.6.7",
36
36
  "tslib": "^2.3.1",
37
37
  "@phenomnomnominal/tsquery": "~5.0.1"
38
38
  },
39
39
  "devDependencies": {
40
- "nx": "21.6.5"
40
+ "nx": "21.6.7"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@remix-run/dev": "^2.14.0"
@@ -1 +1 @@
1
- {"version":3,"file":"library.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/remix/src/generators/library/library.impl.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,EAAe,iBAAiB,EAAoB,MAAM,YAAY,CAAC;AAS9E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAQvD,wBAAsB,qBAAqB,CACzC,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,sBAAsB,8BAO/B;AAED,wBAAsB,6BAA6B,CACjD,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,sBAAsB,8BAoE/B;AAED,eAAe,qBAAqB,CAAC"}
1
+ {"version":3,"file":"library.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/remix/src/generators/library/library.impl.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,EAAe,iBAAiB,EAAoB,MAAM,YAAY,CAAC;AAS9E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AASvD,wBAAsB,qBAAqB,CACzC,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,sBAAsB,8BAO/B;AAED,wBAAsB,6BAA6B,CACjD,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,sBAAsB,8BAsE/B;AAED,eAAe,qBAAqB,CAAC"}
@@ -8,6 +8,7 @@ const react_1 = require("@nx/react");
8
8
  const lib_1 = require("./lib");
9
9
  const ts_solution_setup_1 = require("@nx/js/src/utils/typescript/ts-solution-setup");
10
10
  const sort_fields_1 = require("@nx/js/src/utils/package-json/sort-fields");
11
+ const update_dependencies_1 = require("../utils/update-dependencies");
11
12
  async function remixLibraryGenerator(tree, schema) {
12
13
  return remixLibraryGeneratorInternal(tree, {
13
14
  addPlugin: false,
@@ -18,6 +19,8 @@ async function remixLibraryGenerator(tree, schema) {
18
19
  async function remixLibraryGeneratorInternal(tree, schema) {
19
20
  const tasks = [];
20
21
  const addTsPlugin = (0, ts_solution_setup_1.shouldConfigureTsSolutionSetup)(tree, schema.addPlugin);
22
+ const installTask = (0, update_dependencies_1.updateDependencies)(tree);
23
+ tasks.push(installTask);
21
24
  const jsInitTask = await (0, js_1.initGenerator)(tree, {
22
25
  js: schema.js,
23
26
  addTsPlugin,