@nx/nest 23.0.0 → 23.1.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/README.md CHANGED
@@ -7,13 +7,12 @@
7
7
 
8
8
  <div style="text-align: center;">
9
9
 
10
- [![CircleCI](https://circleci.com/gh/nrwl/nx.svg?style=svg)](https://circleci.com/gh/nrwl/nx)
11
10
  [![License](https://img.shields.io/npm/l/@nx/workspace.svg?style=flat-square)]()
12
11
  [![NPM Version](https://badge.fury.io/js/nx.svg)](https://www.npmjs.com/package/nx)
13
12
  [![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()
14
13
  [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
15
- [![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
16
14
  [![Join us on the Official Nx Discord Server](https://img.shields.io/discord/1143497901675401286?label=discord)](https://go.nx.dev/community)
15
+ [![Nx Sandboxing](https://staging.nx.app/workspaces/62d013ea0852fe0a2df74438/sandbox-badge.svg)](https://nx.dev/docs/features/ci-features/sandboxing)
17
16
 
18
17
  </div>
19
18
 
@@ -8,9 +8,11 @@ function updateTsConfig(tree, options) {
8
8
  json.compilerOptions.experimentalDecorators = true;
9
9
  json.compilerOptions.emitDecoratorMetadata = true;
10
10
  json.compilerOptions.target = 'es2021';
11
- // Only set this when not using TS solution setup, as TS solution setup uses 'nodenext'
11
+ // TS solution setup uses 'nodenext'; otherwise pin a version-appropriate
12
+ // node-family/bundler resolution for this commonjs context.
12
13
  if (!(0, internal_1.isUsingTsSolutionSetup)(tree)) {
13
- json.compilerOptions.moduleResolution = 'node';
14
+ json.compilerOptions.moduleResolution =
15
+ (0, internal_1.getTsConfigModuleResolution)(tree);
14
16
  }
15
17
  if (options.strict) {
16
18
  json.compilerOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/nest",
3
- "version": "23.0.0",
3
+ "version": "23.1.0-beta.1",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "files": [
@@ -62,10 +62,10 @@
62
62
  "@nestjs/schematics": "^11.0.0",
63
63
  "semver": "^7.6.3",
64
64
  "tslib": "^2.3.0",
65
- "@nx/devkit": "23.0.0",
66
- "@nx/js": "23.0.0",
67
- "@nx/eslint": "23.0.0",
68
- "@nx/node": "23.0.0"
65
+ "@nx/devkit": "23.1.0-beta.1",
66
+ "@nx/js": "23.1.0-beta.1",
67
+ "@nx/eslint": "23.1.0-beta.1",
68
+ "@nx/node": "23.1.0-beta.1"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "@nestjs/core": ">=10.0.0 <12.0.0",