@nx/js 20.2.0-beta.4 → 20.2.0-beta.5

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/migrations.json CHANGED
@@ -111,6 +111,19 @@
111
111
  "alwaysAddToPackageJson": false
112
112
  }
113
113
  }
114
+ },
115
+ "20.2.0": {
116
+ "version": "20.2.0-beta.5",
117
+ "x-prompt": "Do you want to update to TypeScript v5.6?",
118
+ "requires": {
119
+ "typescript": ">=5.5.0 <5.6.0"
120
+ },
121
+ "packages": {
122
+ "typescript": {
123
+ "version": "~5.6.2",
124
+ "alwaysAddToPackageJson": false
125
+ }
126
+ }
114
127
  }
115
128
  }
116
129
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/js",
3
- "version": "20.2.0-beta.4",
3
+ "version": "20.2.0-beta.5",
4
4
  "private": false,
5
5
  "description": "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
6
6
  "repository": {
@@ -39,8 +39,8 @@
39
39
  "@babel/preset-env": "^7.23.2",
40
40
  "@babel/preset-typescript": "^7.22.5",
41
41
  "@babel/runtime": "^7.22.6",
42
- "@nx/devkit": "20.2.0-beta.4",
43
- "@nx/workspace": "20.2.0-beta.4",
42
+ "@nx/devkit": "20.2.0-beta.5",
43
+ "@nx/workspace": "20.2.0-beta.5",
44
44
  "@zkochan/js-yaml": "0.0.7",
45
45
  "babel-plugin-const-enum": "^1.0.1",
46
46
  "babel-plugin-macros": "^2.8.0",
@@ -3,5 +3,5 @@ import { NodeExecutorOptions } from './schema';
3
3
  export declare function nodeExecutor(options: NodeExecutorOptions, context: ExecutorContext): AsyncGenerator<{
4
4
  success: boolean;
5
5
  options?: Record<string, any>;
6
- }, void, undefined>;
6
+ }, void, any>;
7
7
  export default nodeExecutor;
@@ -6,5 +6,5 @@ export declare function swcExecutor(_options: SwcExecutorOptions, context: Execu
6
6
  } | {
7
7
  success: boolean;
8
8
  outfile: string;
9
- }, any, undefined>;
9
+ }, any, any>;
10
10
  export default swcExecutor;
@@ -3,5 +3,5 @@ import type { TypeScriptCompilationOptions } from '@nx/workspace/src/utilities/t
3
3
  import { ExecutorOptions, NormalizedExecutorOptions } from '../../utils/schema';
4
4
  export declare function determineModuleFormatFromTsConfig(absolutePathToTsConfig: string): 'cjs' | 'esm';
5
5
  export declare function createTypeScriptCompilationOptions(normalizedOptions: NormalizedExecutorOptions, context: ExecutorContext): TypeScriptCompilationOptions;
6
- export declare function tscExecutor(_options: ExecutorOptions, context: ExecutorContext): AsyncGenerator<import("../../utils/typescript/compile-typescript-files").TypescriptCompilationResult, any, undefined>;
6
+ export declare function tscExecutor(_options: ExecutorOptions, context: ExecutorContext): AsyncGenerator<import("../../utils/typescript/compile-typescript-files").TypescriptCompilationResult, any, any>;
7
7
  export default tscExecutor;
@@ -10,4 +10,4 @@ export declare function compileSwc(context: ExecutorContext, normalizedOptions:
10
10
  export declare function compileSwcWatch(context: ExecutorContext, normalizedOptions: NormalizedSwcExecutorOptions, postCompilationCallback: () => Promise<void>): AsyncGenerator<{
11
11
  success: boolean;
12
12
  outfile: string;
13
- }, any, undefined>;
13
+ }, any, any>;
@@ -8,10 +8,10 @@ export declare const swcNodeVersion = "~1.9.1";
8
8
  export declare const tsLibVersion = "^2.3.0";
9
9
  export declare const typesNodeVersion = "18.16.9";
10
10
  export declare const verdaccioVersion = "^5.0.4";
11
- export declare const typescriptVersion = "~5.5.2";
11
+ export declare const typescriptVersion = "~5.6.2";
12
12
  /**
13
13
  * The minimum version is currently determined from the lowest version
14
14
  * that's supported by the lowest Angular supported version, e.g.
15
- * `npm view @angular/compiler-cli@14.0.0 peerDependencies.typescript`
15
+ * `npm view @angular/compiler-cli@17.0.0 peerDependencies.typescript`
16
16
  */
17
- export declare const supportedTypescriptVersions = ">=4.9.3";
17
+ export declare const supportedTypescriptVersions = ">=5.2.0";
@@ -12,10 +12,10 @@ exports.tsLibVersion = '^2.3.0';
12
12
  exports.typesNodeVersion = '18.16.9';
13
13
  exports.verdaccioVersion = '^5.0.4';
14
14
  // Typescript
15
- exports.typescriptVersion = '~5.5.2';
15
+ exports.typescriptVersion = '~5.6.2';
16
16
  /**
17
17
  * The minimum version is currently determined from the lowest version
18
18
  * that's supported by the lowest Angular supported version, e.g.
19
- * `npm view @angular/compiler-cli@14.0.0 peerDependencies.typescript`
19
+ * `npm view @angular/compiler-cli@17.0.0 peerDependencies.typescript`
20
20
  */
21
- exports.supportedTypescriptVersions = '>=4.9.3';
21
+ exports.supportedTypescriptVersions = '>=5.2.0';