tnp-helpers 16.444.21 → 16.444.22
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/assets/shared/shared_folder_info.txt +1 -1
- package/browser/esm2022/lib/base/base-git.mjs +65 -2
- package/browser/esm2022/lib/base/base-library-build.mjs +4 -2
- package/browser/esm2022/lib/base/base-npm-helpers.mjs +131 -14
- package/browser/esm2022/lib/base/base-project.mjs +8 -1
- package/browser/esm2022/lib/base/base-release-process.mjs +381 -3
- package/browser/esm2022/lib/base/base-vscode.mjs +10 -1
- package/browser/esm2022/lib/base/commit-data.mjs +116 -44
- package/browser/esm2022/lib/base/core-project.mjs +1 -1
- package/browser/esm2022/lib/base/index.mjs +3 -1
- package/browser/esm2022/lib/models.mjs +1 -1
- package/browser/fesm2022/tnp-helpers.mjs +925 -84
- package/browser/fesm2022/tnp-helpers.mjs.map +1 -1
- package/browser/lib/base/base-git.d.ts +15 -4
- package/browser/lib/base/base-library-build.d.ts +1 -1
- package/browser/lib/base/base-npm-helpers.d.ts +25 -1
- package/browser/lib/base/base-project.d.ts +4 -0
- package/browser/lib/base/base-release-process.d.ts +32 -2
- package/browser/lib/base/commit-data.d.ts +18 -13
- package/browser/lib/base/core-project.d.ts +3 -0
- package/browser/lib/base/index.d.ts +1 -0
- package/browser/lib/models.d.ts +5 -0
- package/client/esm2022/lib/base/base-git.mjs +65 -2
- package/client/esm2022/lib/base/base-library-build.mjs +4 -2
- package/client/esm2022/lib/base/base-npm-helpers.mjs +131 -14
- package/client/esm2022/lib/base/base-project.mjs +8 -1
- package/client/esm2022/lib/base/base-release-process.mjs +381 -3
- package/client/esm2022/lib/base/base-vscode.mjs +10 -1
- package/client/esm2022/lib/base/commit-data.mjs +116 -44
- package/client/esm2022/lib/base/core-project.mjs +1 -1
- package/client/esm2022/lib/base/index.mjs +3 -1
- package/client/esm2022/lib/models.mjs +1 -1
- package/client/fesm2022/tnp-helpers.mjs +925 -84
- package/client/fesm2022/tnp-helpers.mjs.map +1 -1
- package/client/lib/base/base-git.d.ts +15 -4
- package/client/lib/base/base-library-build.d.ts +1 -1
- package/client/lib/base/base-npm-helpers.d.ts +25 -1
- package/client/lib/base/base-project.d.ts +4 -0
- package/client/lib/base/base-release-process.d.ts +32 -2
- package/client/lib/base/commit-data.d.ts +18 -13
- package/client/lib/base/core-project.d.ts +3 -0
- package/client/lib/base/index.d.ts +1 -0
- package/client/lib/models.d.ts +5 -0
- package/client/package.json +30 -30
- package/lib/base/base-command-line.backend.d.ts +3 -0
- package/lib/base/base-command-line.backend.js +51 -0
- package/lib/base/base-command-line.backend.js.map +1 -1
- package/lib/base/base-git.d.ts +12 -1
- package/lib/base/base-git.js +118 -41
- package/lib/base/base-git.js.map +1 -1
- package/lib/base/base-library-build.d.ts +1 -1
- package/lib/base/base-library-build.js +33 -31
- package/lib/base/base-library-build.js.map +1 -1
- package/lib/base/base-npm-helpers.d.ts +27 -2
- package/lib/base/base-npm-helpers.js +157 -16
- package/lib/base/base-npm-helpers.js.map +1 -1
- package/lib/base/base-project.d.ts +4 -0
- package/lib/base/base-project.js +13 -0
- package/lib/base/base-project.js.map +1 -1
- package/lib/base/base-release-process.d.ts +32 -2
- package/lib/base/base-release-process.js +621 -16
- package/lib/base/base-release-process.js.map +1 -1
- package/lib/base/base-vscode.js +9 -0
- package/lib/base/base-vscode.js.map +1 -1
- package/lib/base/commit-data.d.ts +17 -12
- package/lib/base/commit-data.js +138 -78
- package/lib/base/commit-data.js.map +1 -1
- package/lib/base/core-project.d.ts +3 -0
- package/lib/base/core-project.js.map +1 -1
- package/lib/base/index.d.ts +2 -0
- package/lib/base/index.js +2 -0
- package/lib/base/index.js.map +1 -1
- package/lib/base/translate.d.ts +227 -1
- package/lib/base/translate.js +566 -54
- package/lib/base/translate.js.map +1 -1
- package/lib/helpers/for-backend/helpers-console-gui.d.ts +1 -0
- package/lib/helpers/for-backend/helpers-console-gui.js +3 -2
- package/lib/helpers/for-backend/helpers-console-gui.js.map +1 -1
- package/lib/helpers/for-backend/helpers-git.backend.d.ts +16 -1
- package/lib/helpers/for-backend/helpers-git.backend.js +123 -16
- package/lib/helpers/for-backend/helpers-git.backend.js.map +1 -1
- package/lib/helpers/for-backend/helpers-process.backend.d.ts +10 -8
- package/lib/helpers/for-backend/helpers-process.backend.js +56 -56
- package/lib/helpers/for-backend/helpers-process.backend.js.map +1 -1
- package/lib/helpers/for-browser/angular.helper.js +3 -3
- package/lib/models.d.ts +5 -0
- package/lib/old/base-component.js +3 -3
- package/lib/old/base-formly-component.js +3 -3
- package/lib/old/dual-component-ctrl.js +3 -3
- package/package.json +4 -4
- package/tmp-environment.json +34 -34
- package/websql/esm2022/lib/base/base-git.mjs +65 -2
- package/websql/esm2022/lib/base/base-library-build.mjs +4 -2
- package/websql/esm2022/lib/base/base-npm-helpers.mjs +131 -14
- package/websql/esm2022/lib/base/base-project.mjs +8 -1
- package/websql/esm2022/lib/base/base-release-process.mjs +381 -3
- package/websql/esm2022/lib/base/base-vscode.mjs +10 -1
- package/websql/esm2022/lib/base/commit-data.mjs +116 -44
- package/websql/esm2022/lib/base/core-project.mjs +1 -1
- package/websql/esm2022/lib/base/index.mjs +3 -1
- package/websql/esm2022/lib/models.mjs +1 -1
- package/websql/fesm2022/tnp-helpers.mjs +925 -84
- package/websql/fesm2022/tnp-helpers.mjs.map +1 -1
- package/websql/lib/base/base-git.d.ts +15 -4
- package/websql/lib/base/base-library-build.d.ts +1 -1
- package/websql/lib/base/base-npm-helpers.d.ts +26 -4
- package/websql/lib/base/base-project.d.ts +4 -0
- package/websql/lib/base/base-release-process.d.ts +32 -2
- package/websql/lib/base/commit-data.d.ts +18 -13
- package/websql/lib/base/core-project.d.ts +3 -0
- package/websql/lib/base/index.d.ts +1 -0
- package/websql/lib/models.d.ts +5 -0
|
@@ -7,7 +7,7 @@ export declare class BaseGit<PROJCET extends BaseProject = any> extends BaseFeat
|
|
|
7
7
|
unstageAllFiles(): any;
|
|
8
8
|
revertFileChanges(fileReletivePath: string): any;
|
|
9
9
|
clone(url: string, destinationFolderName?: string, branchName?: string): Promise<any>;
|
|
10
|
-
restoreLastVersion(
|
|
10
|
+
restoreLastVersion(relativeFilePath: string): void;
|
|
11
11
|
stageAllFiles(): any;
|
|
12
12
|
stash(optinos?: {
|
|
13
13
|
onlyStaged?: boolean;
|
|
@@ -19,7 +19,7 @@ export declare class BaseGit<PROJCET extends BaseProject = any> extends BaseFeat
|
|
|
19
19
|
get isWithoutGitRepository(): any;
|
|
20
20
|
get isGitRoot(): any;
|
|
21
21
|
get originURL(): any;
|
|
22
|
-
commit(commitMessage?: string):
|
|
22
|
+
commit(commitMessage?: string): void;
|
|
23
23
|
/**
|
|
24
24
|
* alias to stage all and commit
|
|
25
25
|
*/
|
|
@@ -52,8 +52,10 @@ export declare class BaseGit<PROJCET extends BaseProject = any> extends BaseFeat
|
|
|
52
52
|
get isInMergeProcess(): any;
|
|
53
53
|
lastCommitDate(): any;
|
|
54
54
|
lastCommitHash(): any;
|
|
55
|
-
lastCommitMessage():
|
|
55
|
+
lastCommitMessage(): string;
|
|
56
|
+
penultimateCommitMessage(): Promise<string>;
|
|
56
57
|
getCommitMessageByIndex(index: number): Promise<any>;
|
|
58
|
+
getCommitMessageByHash(hash: string): Promise<any>;
|
|
57
59
|
getCommitHashByIndex(index: number): Promise<any>;
|
|
58
60
|
penultimateCommitHash(): any;
|
|
59
61
|
checkTagExists(tag: string): any;
|
|
@@ -112,6 +114,10 @@ export declare class BaseGit<PROJCET extends BaseProject = any> extends BaseFeat
|
|
|
112
114
|
pushProcess(options?: {
|
|
113
115
|
force?: boolean;
|
|
114
116
|
typeofCommit?: TypeOfCommit;
|
|
117
|
+
askToConfirmPush?: boolean;
|
|
118
|
+
askToConfirmCommit?: boolean;
|
|
119
|
+
skipLint?: boolean;
|
|
120
|
+
askToConfirmBranchChange?: boolean;
|
|
115
121
|
origin?: string;
|
|
116
122
|
args?: string[];
|
|
117
123
|
setOrigin?: 'ssh' | 'http';
|
|
@@ -119,7 +125,7 @@ export declare class BaseGit<PROJCET extends BaseProject = any> extends BaseFeat
|
|
|
119
125
|
forcePushNoQuestion?: boolean;
|
|
120
126
|
commitMessageRequired?: boolean;
|
|
121
127
|
skipChildren?: boolean;
|
|
122
|
-
}): Promise<
|
|
128
|
+
}): Promise<void>;
|
|
123
129
|
_beforeAnyActionOnGitRoot(): any;
|
|
124
130
|
protected _beforePushProcessAction(): Promise<any>;
|
|
125
131
|
protected _beforePullProcessAction(cloneChildren?: boolean): Promise<any>;
|
|
@@ -129,4 +135,9 @@ export declare class BaseGit<PROJCET extends BaseProject = any> extends BaseFeat
|
|
|
129
135
|
* @returns branch name
|
|
130
136
|
*/
|
|
131
137
|
duringPushWarnIfProjectNotOnSpecyficDevBranch(): string;
|
|
138
|
+
getChangedFilesInCommitByHash(hash: string): Promise<any>;
|
|
139
|
+
/**
|
|
140
|
+
* @param index 0 - means last commit
|
|
141
|
+
*/
|
|
142
|
+
getChangedFilesInCommitByIndex(index: number): Promise<any>;
|
|
132
143
|
}
|
|
@@ -38,7 +38,7 @@ export declare abstract class BaseLibraryBuild<PROJCET extends BaseProject = any
|
|
|
38
38
|
/**
|
|
39
39
|
* Angular library build
|
|
40
40
|
*/
|
|
41
|
-
buildLibraries({ watch, strategy, buildType, copylink_to_node_modules, }?: LibrariesBuildOptions & {
|
|
41
|
+
buildLibraries({ watch, strategy, releaseBuild, buildType, copylink_to_node_modules, }?: LibrariesBuildOptions & {
|
|
42
42
|
watch: boolean;
|
|
43
43
|
}): Promise<void>;
|
|
44
44
|
getLibraryBuildComamnd(options?: LibraryBuildCommandOptions): string | undefined;
|
|
@@ -7,11 +7,18 @@ import { CoreModels } from 'tnp-core/websql';
|
|
|
7
7
|
export declare class BaseNpmHelpers<PROJCET extends BaseProject = any> extends BaseFeatureForProject {
|
|
8
8
|
private packageJSON;
|
|
9
9
|
constructor(project: PROJCET);
|
|
10
|
+
/**
|
|
11
|
+
* if something else change package.json in this project
|
|
12
|
+
* and you know that you need to reload it..
|
|
13
|
+
*/
|
|
14
|
+
reloadPackageJsonInMemory(): void;
|
|
10
15
|
get name(): string;
|
|
11
16
|
/**
|
|
12
17
|
* version from package.json -> property version
|
|
13
18
|
*/
|
|
14
19
|
get version(): string;
|
|
20
|
+
set version(newVersion: string);
|
|
21
|
+
updateDependency(packageName: string, version: string): void;
|
|
15
22
|
get versionWithPatchPlusOne(): string;
|
|
16
23
|
get versionWithMinorPlusOneAndPatchZero(): string;
|
|
17
24
|
get versionWithMajorPlusOneAndMinorZeroAndPatchZero(): string;
|
|
@@ -54,7 +61,6 @@ export declare class BaseNpmHelpers<PROJCET extends BaseProject = any> extends B
|
|
|
54
61
|
* @returns object witl all deps from package json
|
|
55
62
|
*/
|
|
56
63
|
allDepsFromPackageJson(packageJson: PackageJson): any;
|
|
57
|
-
checkIfLogginInToNpm(): any;
|
|
58
64
|
linkNodeModulesTo(proj: Partial<BaseProject>): any;
|
|
59
65
|
preferYarnOverNpm(): boolean;
|
|
60
66
|
makeSureNodeModulesInstalled(options?: {
|
|
@@ -76,9 +82,25 @@ export declare class BaseNpmHelpers<PROJCET extends BaseProject = any> extends B
|
|
|
76
82
|
sync(): any;
|
|
77
83
|
async(detach?: boolean, mockFun?: (stdoutCallback: (dataForStdout: any) => any, stdErrcCallback: (dataForStder: any) => any, shouldProcesBeDead?: () => boolean) => number | Promise<number>): import("child_process").ChildProcess;
|
|
78
84
|
asyncAsPromise(): Promise<void>;
|
|
79
|
-
unitlOutputContains(stdoutMsg: string | string[], stderMsg?: string | string[], timeout?: number, stdoutOutputContainsCallback?: () => any): any;
|
|
80
|
-
* @returns true if node_modules folder is empty
|
|
81
|
-
*/
|
|
85
|
+
unitlOutputContains(stdoutMsg: string | string[], stderMsg?: string | string[], timeout?: number, stdoutOutputContainsCallback?: () => any): any;
|
|
82
86
|
};
|
|
83
87
|
prepareCommand(optiosn?: CoreModels.NpmInstallOptions): Promise<string>;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @param registry without specified registr is checking npm registry
|
|
91
|
+
* @returns
|
|
92
|
+
*/
|
|
93
|
+
isLoggedInToRegistry(registry?: string): Promise<boolean>;
|
|
94
|
+
/**
|
|
95
|
+
* Prompt the user to log in to a specific npm registry.
|
|
96
|
+
* @param {string} [registry] - Optional npm registry URL.
|
|
97
|
+
* @returns {Promise<void>} - A promise that resolves when the login process completes.
|
|
98
|
+
*/
|
|
99
|
+
loginToRegistry(registry?: string): Promise<void>;
|
|
100
|
+
makeSureLoggedInToNpmRegistry(registry?: string): Promise<void>;
|
|
101
|
+
/**
|
|
102
|
+
* @deprecated
|
|
103
|
+
* use makeSureLoggedInToNpmRegistry()
|
|
104
|
+
*/
|
|
105
|
+
checkIfLogginInToNpm(): any;
|
|
84
106
|
}
|
|
@@ -169,6 +169,10 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
169
169
|
* init and build() project
|
|
170
170
|
*/
|
|
171
171
|
build(buildOptions?: any): Promise<void>;
|
|
172
|
+
/**
|
|
173
|
+
* publish project to npm
|
|
174
|
+
*/
|
|
175
|
+
publish(publishOptions?: any): Promise<void>;
|
|
172
176
|
release(releaseOptions?: any): Promise<void>;
|
|
173
177
|
/**
|
|
174
178
|
* lint porject
|
|
@@ -11,9 +11,39 @@ export declare class BaseReleaseProcess<PROJCET extends BaseProject = any> exten
|
|
|
11
11
|
automaticRelease: boolean;
|
|
12
12
|
type: CoreModels.ReleaseType;
|
|
13
13
|
lastChangesSummary: string;
|
|
14
|
-
|
|
14
|
+
newVersion: string;
|
|
15
|
+
commitsForChangelog: {
|
|
16
|
+
commitMessages: string;
|
|
17
|
+
index: number;
|
|
18
|
+
}[];
|
|
19
|
+
getReleaseWords(): string[];
|
|
20
|
+
startRelease(options?: Partial<Pick<BaseReleaseProcess<PROJCET>, 'automaticRelease' | 'type' | 'newVersion'>>): Promise<void>;
|
|
21
|
+
private reinstallNodeModules;
|
|
22
|
+
selectChangelogCommits(): Promise<{
|
|
23
|
+
commitMessages: string;
|
|
24
|
+
index: number;
|
|
25
|
+
}[]>;
|
|
26
|
+
private getCommitsUpToReleaseCommit;
|
|
27
|
+
private publishToNpm;
|
|
28
|
+
private testAfterPublish;
|
|
29
|
+
private testBeforePublish;
|
|
30
|
+
private commitAndPush;
|
|
31
|
+
protected releaseCommitTemplate(): string;
|
|
32
|
+
private testLibraries;
|
|
33
|
+
buildAllLibraries(): Promise<void>;
|
|
34
|
+
resetReleaseFiles(): Promise<any>;
|
|
35
|
+
get toBumpProjects(): PROJCET[];
|
|
36
|
+
bumpNewVersionEverywhere(): Promise<any>;
|
|
37
|
+
confirmNewVersion(): Promise<void>;
|
|
15
38
|
private selectReleaseType;
|
|
16
|
-
|
|
39
|
+
protected commitMessageInChangelogTransformFn(message: string): Promise<string>;
|
|
40
|
+
getChangelogContentToAppend(askForEveryItem: boolean): Promise<string>;
|
|
41
|
+
/**
|
|
42
|
+
* TODO extend this to all commits from last release
|
|
43
|
+
*/
|
|
44
|
+
updateChangeLogFromCommits(): Promise<void>;
|
|
45
|
+
extractChangedLibrariesInCommit(hashOrIndex: string | number): Promise<string>;
|
|
46
|
+
changelogItemTemplate(hashOrIndex: string | number, confirmEveryItem?: boolean): Promise<string>;
|
|
17
47
|
generateLastChangesSummary(): Promise<string>;
|
|
18
48
|
getLastChangesFromCommits({ maxMessagesToCheck, stopOnCommitMessage, }?: {
|
|
19
49
|
/**
|
|
@@ -1,22 +1,33 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
export type CommonCommitMsgBranch = 'refactor' | 'chore' | 'style' | 'docs' | 'test' | 'ci' | 'build';
|
|
2
|
+
export type CommonCommitMsgBranch = 'refactor' | 'chore' | 'style' | 'docs' | 'test' | 'ci' | 'build' | 'release';
|
|
3
3
|
export type TypeOfCommit = 'feature' | 'bugfix' | 'performance' | CommonCommitMsgBranch;
|
|
4
4
|
export type TypeOfMsgPrefix = 'feat' | 'fix' | 'perf' | CommonCommitMsgBranch;
|
|
5
5
|
export declare class CommitData {
|
|
6
|
-
private
|
|
6
|
+
private static cleanHttpFromCommitMessage;
|
|
7
|
+
private static getTeamsIdFrom;
|
|
8
|
+
private static getModuleNameFrom;
|
|
7
9
|
/**
|
|
8
10
|
*
|
|
9
11
|
* @returns jiras (from oldest to newset)
|
|
10
12
|
*/
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
static extractAndOrderJiraNumbers(commitOrBranchName: string): string[];
|
|
14
|
+
static cleanMessageFromJiraNumTeamIdEtc(message: string, optinos?: {
|
|
15
|
+
teamID: string;
|
|
16
|
+
commitModuleName: string;
|
|
17
|
+
jiraNumbers: string[];
|
|
18
|
+
}): string;
|
|
15
19
|
private static getModuleNameFromBranch;
|
|
16
20
|
static getFromArgs(args: string[], typeOfCommit: TypeOfCommit): Promise<any>;
|
|
17
21
|
static getFromBranch(currentBranchName: string): Promise<any>;
|
|
18
22
|
static from(options: Pick<CommitData, 'message' | 'jiraNumbers' | 'typeOfCommit' | 'commitModuleName' | 'teamID'>): CommitData;
|
|
23
|
+
private _message;
|
|
19
24
|
typeOfCommit: TypeOfCommit;
|
|
25
|
+
/**
|
|
26
|
+
* ex. JIRA-2132 or MYJIRAREFIX-234234
|
|
27
|
+
*/
|
|
28
|
+
jiraNumbers: string[];
|
|
29
|
+
readonly commitModuleName: string;
|
|
30
|
+
readonly teamID: string;
|
|
20
31
|
private clearMessage;
|
|
21
32
|
/**
|
|
22
33
|
* pure message what was done (without jira or prefixes)
|
|
@@ -24,14 +35,8 @@ export declare class CommitData {
|
|
|
24
35
|
*/
|
|
25
36
|
get message(): string;
|
|
26
37
|
set message(message: string);
|
|
27
|
-
/**
|
|
28
|
-
* ex. JIRA-2132 or MYJIRAREFIX-234234
|
|
29
|
-
*/
|
|
30
|
-
jiraNumbers: string[];
|
|
31
|
-
readonly commitModuleName: string;
|
|
32
|
-
readonly teamID: string;
|
|
33
38
|
get branchPrefix(): TypeOfMsgPrefix;
|
|
34
39
|
get commitMessage(): string;
|
|
35
|
-
get branchName():
|
|
40
|
+
get branchName(): string;
|
|
36
41
|
get isActionCommit(): any;
|
|
37
42
|
}
|
|
@@ -15,6 +15,7 @@ export type CoreCommandArgOptions<PROJECT extends BaseProject> = {
|
|
|
15
15
|
watch?: boolean;
|
|
16
16
|
prod?: boolean;
|
|
17
17
|
debug?: boolean;
|
|
18
|
+
isInReleaseProcess?: boolean;
|
|
18
19
|
libraryBuildOptions?: LibrariesBuildOptions;
|
|
19
20
|
/**
|
|
20
21
|
* first arg from command line
|
|
@@ -52,6 +53,7 @@ export declare class CoreProject<PROJECT extends BaseProject = BaseProject> {
|
|
|
52
53
|
* second color for project (optional)
|
|
53
54
|
*/
|
|
54
55
|
thirdColor?: string;
|
|
56
|
+
npmRegistry?: string;
|
|
55
57
|
description?: string;
|
|
56
58
|
/**
|
|
57
59
|
* ssh url for git repo
|
|
@@ -71,6 +73,7 @@ export declare class CoreProject<PROJECT extends BaseProject = BaseProject> {
|
|
|
71
73
|
environments?: CoreProjectEnvironment[];
|
|
72
74
|
startCommand?: (options: CoreCommandArgOptions<PROJECT>) => Promise<void>;
|
|
73
75
|
relaseCommand?: (options: CoreCommandArgOptions<PROJECT>) => Promise<void>;
|
|
76
|
+
publishCommand?: (options: CoreCommandArgOptions<PROJECT>) => Promise<void>;
|
|
74
77
|
deployCommand?: (options: CoreCommandArgOptions<PROJECT>) => Promise<void>;
|
|
75
78
|
testCommand?: (options: CoreCommandArgOptions<PROJECT>) => Promise<void>;
|
|
76
79
|
buildCommand?: (options: CoreCommandArgOptions<PROJECT>) => Promise<void>;
|
|
@@ -6,6 +6,7 @@ export * from './base-library-build';
|
|
|
6
6
|
export * from './base-npm-helpers';
|
|
7
7
|
export * from './base-linked-projects';
|
|
8
8
|
export * from './base-git';
|
|
9
|
+
export * from './base-release-process';
|
|
9
10
|
export * from './commit-data';
|
|
10
11
|
export * from './core-project';
|
|
11
12
|
export * from './linked-project';
|
package/websql/lib/models.d.ts
CHANGED
|
@@ -23,8 +23,13 @@ export type LibraryBuildCommandOptions = {
|
|
|
23
23
|
};
|
|
24
24
|
export type LibrariesBuildOptions = {
|
|
25
25
|
strategy?: 'link' | 'copy';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated
|
|
28
|
+
* this will be detected in future
|
|
29
|
+
*/
|
|
26
30
|
buildType: core.CoreModels.LibraryType;
|
|
27
31
|
copylink_to_node_modules?: string[];
|
|
32
|
+
releaseBuild?: boolean;
|
|
28
33
|
};
|
|
29
34
|
export interface ChangelogData {
|
|
30
35
|
changes: string[];
|