@nx/devkit 23.0.0 → 23.1.0-beta.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/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
 
@@ -51,7 +51,7 @@ function convertNxExecutor(executor) {
51
51
  return require('@angular-devkit/architect').createBuilder(builderFunction);
52
52
  }
53
53
  function toObservable(promiseOrAsyncIterator) {
54
- return new (require('rxjs').Observable)((subscriber) => {
54
+ return new require('rxjs').Observable((subscriber) => {
55
55
  promiseOrAsyncIterator
56
56
  .then((value) => {
57
57
  if (!value.next) {
@@ -23,7 +23,7 @@ export declare function getInstalledPackageVersion(packageName: string): string
23
23
  * `getInstalledPackageVersion` instead.
24
24
  */
25
25
  export declare function getDeclaredPackageVersion(tree: Tree, packageName: string, latestKnownVersion?: string): string | null;
26
- export declare const NON_SEMVER_DIST_TAGS: readonly ["latest", "next"];
26
+ export declare const NON_SEMVER_DIST_TAGS: readonly ['latest', 'next'];
27
27
  export type NonSemverDistTag = (typeof NON_SEMVER_DIST_TAGS)[number];
28
28
  export declare function isNonSemverDistTag(version: string): version is NonSemverDistTag;
29
29
  export declare function normalizeSemver(version: string): string | null;
@@ -1 +1 @@
1
- export declare const typescriptVersion = "~5.9.2";
1
+ export declare const typescriptVersion = "~6.0.3";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.typescriptVersion = void 0;
4
- exports.typescriptVersion = '~5.9.2';
4
+ exports.typescriptVersion = '~6.0.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/devkit",
3
- "version": "23.0.0",
3
+ "version": "23.1.0-beta.0",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "files": [
@@ -60,7 +60,7 @@
60
60
  },
61
61
  "devDependencies": {
62
62
  "jest": "30.3.0",
63
- "nx": "23.0.0"
63
+ "nx": "23.1.0-beta.0"
64
64
  },
65
65
  "peerDependencies": {
66
66
  "nx": ">= 22 <= 24 || ^23.0.0-0"