@rxap/plugin-utilities 20.0.1-dev.7 → 20.0.1-dev.8
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/CHANGELOG.md +4 -0
- package/package.json +5 -5
- package/src/lib/get-all-package-dependencies-for-project.d.ts +2 -2
- package/src/lib/get-dependent-projects-for-project.d.ts +1 -1
- package/src/lib/get-direct-package-dependencies-for-project.d.ts +2 -2
- package/src/lib/guess-output-path.d.ts +1 -1
- package/src/lib/project-package-json.d.ts +3 -3
- package/src/lib/project-target.d.ts +3 -3
- package/src/lib/project.d.ts +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [20.0.1-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/plugin-utilities@20.0.1-dev.7...@rxap/plugin-utilities@20.0.1-dev.8) (2025-02-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/plugin-utilities
|
|
9
|
+
|
|
6
10
|
## [20.0.1-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/plugin-utilities@20.0.1-dev.6...@rxap/plugin-utilities@20.0.1-dev.7) (2025-01-30)
|
|
7
11
|
|
|
8
12
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "20.0.1-dev.
|
|
2
|
+
"version": "20.0.1-dev.8",
|
|
3
3
|
"name": "@rxap/plugin-utilities",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@nx/devkit": "20.4.
|
|
7
|
-
"@rxap/node-utilities": "^1.3.8-dev.
|
|
8
|
-
"@rxap/workspace-utilities": "^19.6.1-dev.
|
|
6
|
+
"@nx/devkit": "20.4.1",
|
|
7
|
+
"@rxap/node-utilities": "^1.3.8-dev.3",
|
|
8
|
+
"@rxap/workspace-utilities": "^19.6.1-dev.8",
|
|
9
9
|
"tslib": "2.6.2"
|
|
10
10
|
},
|
|
11
11
|
"author": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"schematics": "./generators.json",
|
|
39
39
|
"type": "commonjs",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "8752e61e1fece0611811cb06ac2e31f0e6610549",
|
|
41
41
|
"types": "./src/index.d.ts",
|
|
42
42
|
"main": "./src/index.js"
|
|
43
43
|
}
|
|
@@ -8,5 +8,5 @@ import { ExecutorContext } from '@nx/devkit';
|
|
|
8
8
|
* @param context
|
|
9
9
|
* @param projectName
|
|
10
10
|
*/
|
|
11
|
-
export declare function GetAllPackageDependenciesForProject(context: ExecutorContext, projectName?: string, resolvedDependencies?: Record<string, string>): Record<string, string>;
|
|
12
|
-
export declare function GetAllPackageDependenciesForProjectWihRetry(context: ExecutorContext, projectName?: string, resolvedDependencies?: Record<string, string>, retries?: number, sleep?: number): Promise<Record<string, string>>;
|
|
11
|
+
export declare function GetAllPackageDependenciesForProject(context: ExecutorContext, projectName?: string | undefined, resolvedDependencies?: Record<string, string>): Record<string, string>;
|
|
12
|
+
export declare function GetAllPackageDependenciesForProjectWihRetry(context: ExecutorContext, projectName?: string | undefined, resolvedDependencies?: Record<string, string>, retries?: number, sleep?: number): Promise<Record<string, string>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
-
export declare function GetDependentProjectsForProject(context: ExecutorContext, projectName?: string, resolved?: string[]): string[];
|
|
2
|
+
export declare function GetDependentProjectsForProject(context: ExecutorContext, projectName?: string | undefined, resolved?: string[]): string[];
|
|
@@ -7,5 +7,5 @@ import { ExecutorContext } from '@nx/devkit';
|
|
|
7
7
|
* @param context
|
|
8
8
|
* @param projectName
|
|
9
9
|
*/
|
|
10
|
-
export declare function getDirectPackageDependenciesForProject(context: ExecutorContext, projectName?: string): Record<string, string>;
|
|
11
|
-
export declare function getDirectPackageDependenciesForProjectWihRetry(context: ExecutorContext, projectName?: string, retries?: number, sleep?: number): Promise<Record<string, string>>;
|
|
10
|
+
export declare function getDirectPackageDependenciesForProject(context: ExecutorContext, projectName?: string | undefined): Record<string, string>;
|
|
11
|
+
export declare function getDirectPackageDependenciesForProjectWihRetry(context: ExecutorContext, projectName?: string | undefined, retries?: number, sleep?: number): Promise<Record<string, string>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ExecutorContext, TargetConfiguration } from '@nx/devkit';
|
|
2
|
-
export declare function GuessOutputPathFromContext(context: ExecutorContext, projectName?: string, configurationName?: string, targetName?: string): string;
|
|
2
|
+
export declare function GuessOutputPathFromContext(context: ExecutorContext, projectName?: string | undefined, configurationName?: string | undefined, targetName?: string): string;
|
|
3
3
|
export declare function GuessOutputPathFromTargetString(context: ExecutorContext, targetString?: string): string;
|
|
4
4
|
export declare function GuessOutputPath(projectName: string, projectRoot: string, buildTarget: TargetConfiguration, configurationName?: string): string;
|
|
@@ -9,7 +9,7 @@ export interface ProjectPackageJson extends PackageJson {
|
|
|
9
9
|
url: string;
|
|
10
10
|
}[];
|
|
11
11
|
}
|
|
12
|
-
export declare function readPackageJsonForProject(context: ExecutorContext, projectName?: string): ProjectPackageJson;
|
|
13
|
-
export declare function readPackageJsonForProjectWithRetry(context: ExecutorContext, projectName?: string, retries?: number, sleep?: number): Promise<ProjectPackageJson>;
|
|
12
|
+
export declare function readPackageJsonForProject(context: ExecutorContext, projectName?: string | undefined): ProjectPackageJson;
|
|
13
|
+
export declare function readPackageJsonForProjectWithRetry(context: ExecutorContext, projectName?: string | undefined, retries?: number, sleep?: number): Promise<ProjectPackageJson>;
|
|
14
14
|
export declare function readRootPackageJson(context: ExecutorContext, retries?: number, sleep?: number): Promise<ProjectPackageJson>;
|
|
15
|
-
export declare function writePackageJsonFormProject<T extends ProjectPackageJson = ProjectPackageJson>(context: ExecutorContext, content: T, projectName?: string): void;
|
|
15
|
+
export declare function writePackageJsonFormProject<T extends ProjectPackageJson = ProjectPackageJson>(context: ExecutorContext, content: T, projectName?: string | undefined): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
-
export declare function HasProjectTarget(context: ExecutorContext, projectName: string, targetName: string): boolean;
|
|
3
|
-
export declare function GetProjectTarget(context: ExecutorContext, projectName: string, targetName: string): import("@nx/devkit").TargetConfiguration<any>;
|
|
4
|
-
export declare function GetProjectTargetOptions<T = Record<string, unknown>>(context: ExecutorContext, projectName: string, targetName: string, configurationName?: string): T;
|
|
2
|
+
export declare function HasProjectTarget(context: ExecutorContext, projectName: string | undefined, targetName: string): boolean;
|
|
3
|
+
export declare function GetProjectTarget(context: ExecutorContext, projectName: string | undefined, targetName: string): import("@nx/devkit").TargetConfiguration<any>;
|
|
4
|
+
export declare function GetProjectTargetOptions<T = Record<string, unknown>>(context: ExecutorContext, projectName: string | undefined, targetName: string, configurationName?: string | undefined): T;
|
package/src/lib/project.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
-
export declare function GetProjectConfiguration(context: ExecutorContext, projectName?: string): import("@nx/devkit").ProjectConfiguration;
|
|
3
|
-
export declare function GetProjectRoot(context: ExecutorContext, projectName?: string): string;
|
|
4
|
-
export declare function GetProjectSourceRoot(context: ExecutorContext, projectName?: string): string;
|
|
5
|
-
export declare function IsWorkspaceProject(context: ExecutorContext, projectName?: string): boolean;
|
|
2
|
+
export declare function GetProjectConfiguration(context: ExecutorContext, projectName?: string | undefined): import("@nx/devkit").ProjectConfiguration;
|
|
3
|
+
export declare function GetProjectRoot(context: ExecutorContext, projectName?: string | undefined): string;
|
|
4
|
+
export declare function GetProjectSourceRoot(context: ExecutorContext, projectName?: string | undefined): string;
|
|
5
|
+
export declare function IsWorkspaceProject(context: ExecutorContext, projectName?: string | undefined): boolean;
|