@nx/devkit 23.0.0-rc.4 → 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
|
-
[](https://circleci.com/gh/nrwl/nx)
|
|
11
10
|
[]()
|
|
12
11
|
[](https://www.npmjs.com/package/nx)
|
|
13
12
|
[]()
|
|
14
13
|
[](http://commitizen.github.io/cz-cli/)
|
|
15
|
-
[](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
16
14
|
[](https://go.nx.dev/community)
|
|
15
|
+
[](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
|
|
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 [
|
|
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 = "~
|
|
1
|
+
export declare const typescriptVersion = "~6.0.3";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/devkit",
|
|
3
|
-
"version": "23.
|
|
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.
|
|
63
|
+
"nx": "23.1.0-beta.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"nx": ">= 22 <= 24 || ^23.0.0-0"
|