tnp-helpers 16.100.2 → 16.100.4
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-project.mjs +155 -5
- package/browser/esm2022/lib/models.mjs +85 -2
- package/browser/fesm2022/tnp-helpers.mjs +237 -4
- package/browser/fesm2022/tnp-helpers.mjs.map +1 -1
- package/browser/lib/base/base-project.d.ts +15 -4
- package/browser/lib/models.d.ts +49 -9
- package/client/esm2022/lib/base/base-project.mjs +155 -5
- package/client/esm2022/lib/models.mjs +85 -2
- package/client/fesm2022/tnp-helpers.mjs +237 -4
- package/client/fesm2022/tnp-helpers.mjs.map +1 -1
- package/client/lib/base/base-project.d.ts +15 -4
- package/client/lib/models.d.ts +49 -9
- package/client/package.json +174 -124
- package/lib/base/base-command-line.backend.d.ts +3 -1
- package/lib/base/base-command-line.backend.js +39 -4
- package/lib/base/base-command-line.backend.js.map +1 -1
- package/lib/base/base-project.d.ts +16 -5
- package/lib/base/base-project.js +355 -85
- package/lib/base/base-project.js.map +1 -1
- package/lib/for-backend/helpers-git.backend.d.ts +5 -2
- package/lib/for-backend/helpers-git.backend.js +6 -4
- package/lib/for-backend/helpers-git.backend.js.map +1 -1
- package/lib/for-browser/angular.helper.js +3 -3
- package/lib/models.d.ts +49 -9
- package/lib/models.js +107 -0
- package/lib/models.js.map +1 -1
- 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 +5 -5
- package/package.json_tnp.json5 +0 -1
- package/tmp-environment.json +178 -128
- package/websql/esm2022/lib/base/base-project.mjs +155 -5
- package/websql/esm2022/lib/models.mjs +85 -2
- package/websql/fesm2022/tnp-helpers.mjs +238 -5
- package/websql/fesm2022/tnp-helpers.mjs.map +1 -1
- package/websql/lib/base/base-project.d.ts +15 -4
- package/websql/lib/models.d.ts +49 -9
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import { CoreModels } from 'tnp-core/browser';
|
|
3
|
-
import { CommitData, TypeOfCommit } from '../index';
|
|
3
|
+
import { CommitData, LinkedPorjectsConfig, LinkedProject, TypeOfCommit } from '../index';
|
|
4
4
|
import { BaseProjectResolver } from './base-project-resolver';
|
|
5
5
|
export type BaseProjectType = 'unknow' | 'unknow-npm-project';
|
|
6
6
|
/**
|
|
@@ -42,6 +42,17 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
42
42
|
* doesn't need to be real path -> can be link
|
|
43
43
|
*/
|
|
44
44
|
location: string);
|
|
45
|
+
addLinkedProject(linkedProj: LinkedProject | string): any;
|
|
46
|
+
addLinkedProjects(linkedProjs: (LinkedProject)[]): any;
|
|
47
|
+
setLinkedProjectsConfig(linkedPorjectsConfig: Partial<LinkedPorjectsConfig>): any;
|
|
48
|
+
private get linkedProjectsConfigPath();
|
|
49
|
+
private recreateLinkedProjectsConfig;
|
|
50
|
+
getLinkedProjectsConfig(): LinkedPorjectsConfig;
|
|
51
|
+
get linkedProjects(): LinkedProject[];
|
|
52
|
+
get detectedLinkedProjects(): LinkedProject[];
|
|
53
|
+
get linkedProjectsPrefix(): string;
|
|
54
|
+
get linkedProjectsExisted(): PROJCET[];
|
|
55
|
+
protected cloneUnexistedLinkedProjects(actionType: 'pull' | 'push', cloneChildren?: boolean): Promise<any>;
|
|
45
56
|
setType(type: TYPE): void;
|
|
46
57
|
typeIs(...types: TYPE[]): boolean;
|
|
47
58
|
typeIsNot(...types: TYPE[]): boolean;
|
|
@@ -165,7 +176,7 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
165
176
|
getMainBranches(): string[];
|
|
166
177
|
isUnsingActionCommit(): boolean;
|
|
167
178
|
resetProcess(overrideBranch?: string, recrusive?: boolean): Promise<void>;
|
|
168
|
-
pullProcess(): Promise<any>;
|
|
179
|
+
pullProcess(cloneChildren?: boolean): Promise<any>;
|
|
169
180
|
pushProcess(options?: {
|
|
170
181
|
force?: boolean;
|
|
171
182
|
typeofCommit?: TypeOfCommit;
|
|
@@ -177,14 +188,14 @@ export declare abstract class BaseProject<PROJCET extends BaseProject = any, TYP
|
|
|
177
188
|
}): Promise<any>;
|
|
178
189
|
private _beforeAnyActionOnGitRoot;
|
|
179
190
|
protected _beforePushProcessAction(): Promise<any>;
|
|
180
|
-
protected _beforePullProcessAction(): Promise<any>;
|
|
191
|
+
protected _beforePullProcessAction(cloneChildren?: boolean): Promise<any>;
|
|
181
192
|
protected _getCommitMessage(typeofCommit: TypeOfCommit, args: string[], commitMessageRequired?: boolean): Promise<CommitData>;
|
|
182
193
|
linkTo(destPackageLocation: string): void;
|
|
183
194
|
writeFile(relativePath: string, content: string): void;
|
|
184
195
|
runCommandGetString(this: BaseProject, command: string): any;
|
|
185
196
|
get git(): {
|
|
186
197
|
revertFileChanges(fileReletivePath: string): any;
|
|
187
|
-
clone(url: string, destinationFolderName?: string): any
|
|
198
|
+
clone(url: string, destinationFolderName?: string, branchName?: string): Promise<any>;
|
|
188
199
|
restoreLastVersion(localFilePath: string): any;
|
|
189
200
|
stageAllFiles(): any;
|
|
190
201
|
stash(optinos?: {
|
package/client/lib/models.d.ts
CHANGED
|
@@ -1,11 +1,51 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
export declare class LinkedProject {
|
|
3
|
+
static from(options: Partial<LinkedProject>): LinkedProject;
|
|
4
|
+
static fromName(projectName: string, currentRemoteUrl?: string, currentBranch?: string): LinkedProject;
|
|
5
|
+
static detect(insideLocation: string, recursive?: boolean): LinkedProject[];
|
|
6
|
+
/**
|
|
7
|
+
* don't access directly, use remoteUrl() instead
|
|
8
|
+
*/
|
|
9
|
+
repoUrlSsh?: string;
|
|
10
|
+
/**
|
|
11
|
+
* don't access directly, use remoteUrl() instead
|
|
12
|
+
*/
|
|
13
|
+
repoUrlHttp?: string;
|
|
14
|
+
/**
|
|
15
|
+
* don't access directly, use remoteUrl() instead
|
|
16
|
+
*/
|
|
17
|
+
repoUrl?: string;
|
|
18
|
+
/**
|
|
19
|
+
* url for git repo
|
|
20
|
+
*/
|
|
21
|
+
remoteUrl(): string;
|
|
22
|
+
deafultBranch?: string;
|
|
23
|
+
purpose?: string;
|
|
24
|
+
relativeClonePath?: string;
|
|
25
|
+
}
|
|
26
|
+
export declare class LinkedPorjectsConfig {
|
|
27
|
+
static from(options: Partial<LinkedPorjectsConfig>): any;
|
|
28
|
+
prefix?: string;
|
|
29
|
+
projects: LinkedProject[];
|
|
30
|
+
}
|
|
31
|
+
export type P1Environment = {
|
|
32
|
+
[envName: string]: {
|
|
33
|
+
name: string;
|
|
34
|
+
npmTask?: 'start';
|
|
35
|
+
action?: () => void;
|
|
36
|
+
};
|
|
7
37
|
};
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
38
|
+
export declare class CoreProject {
|
|
39
|
+
static from(options: Omit<CoreProject, 'name' | 'url'>): any;
|
|
40
|
+
color?: string;
|
|
41
|
+
description?: string;
|
|
42
|
+
/**
|
|
43
|
+
* url for git repo
|
|
44
|
+
*/
|
|
45
|
+
urlSSH?: string;
|
|
46
|
+
urlHttp?: string;
|
|
47
|
+
branches: string[];
|
|
48
|
+
environments: P1Environment;
|
|
49
|
+
get name(): any;
|
|
50
|
+
get url(): string;
|
|
51
|
+
}
|
package/client/package.json
CHANGED
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"linkedFolders": [],
|
|
14
14
|
"npmFixes": []
|
|
15
15
|
},
|
|
16
|
-
"linkedProjects": [],
|
|
17
16
|
"smartContainerBuildTarget": "",
|
|
18
17
|
"linkedRepos": [],
|
|
19
18
|
"libReleaseOptions": {
|
|
@@ -42,10 +41,11 @@
|
|
|
42
41
|
"firedev-helpers"
|
|
43
42
|
]
|
|
44
43
|
},
|
|
45
|
-
"version": "16.100.
|
|
44
|
+
"version": "16.100.4",
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"json10-writer": "~16.100.
|
|
48
|
-
"
|
|
46
|
+
"json10-writer": "~16.100.4",
|
|
47
|
+
"task.js": "0.1.5",
|
|
48
|
+
"tnp-models": "~16.100.4"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -57,94 +57,123 @@
|
|
|
57
57
|
"homepage": "https://github.com/darekf77/tnp-helpers#readme",
|
|
58
58
|
"name": "tnp-helpers",
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@angular-
|
|
61
|
-
"@angular-devkit/
|
|
62
|
-
"@angular/
|
|
63
|
-
"@angular/
|
|
64
|
-
"@angular/
|
|
65
|
-
"@angular/
|
|
66
|
-
"@angular/
|
|
67
|
-
"@angular/
|
|
68
|
-
"@angular/
|
|
69
|
-
"@angular/
|
|
70
|
-
"@angular/
|
|
71
|
-
"@angular/
|
|
72
|
-
"@angular/
|
|
73
|
-
"@angular/
|
|
74
|
-
"@angular/platform-browser
|
|
75
|
-
"@angular/
|
|
76
|
-
"@
|
|
77
|
-
"@
|
|
78
|
-
"@
|
|
79
|
-
"@
|
|
80
|
-
"@
|
|
81
|
-
"@
|
|
60
|
+
"@angular-builders/custom-webpack": "~16.0.2-beta.2",
|
|
61
|
+
"@angular-devkit/build-angular": "~16.0.5",
|
|
62
|
+
"@angular-devkit/core": "~16.0.5",
|
|
63
|
+
"@angular-material-extensions/password-strength": "~12.1.0",
|
|
64
|
+
"@angular/animations": "~16.0.0",
|
|
65
|
+
"@angular/cdk": "~16.0.3",
|
|
66
|
+
"@angular/cli": "~16.0.5",
|
|
67
|
+
"@angular/common": "~16.0.0",
|
|
68
|
+
"@angular/compiler": "~16.0.0",
|
|
69
|
+
"@angular/compiler-cli": "~16.0.4",
|
|
70
|
+
"@angular/core": "~16.0.0",
|
|
71
|
+
"@angular/elements": "~16.0.4",
|
|
72
|
+
"@angular/forms": "~16.0.0",
|
|
73
|
+
"@angular/material": "~16.0.3",
|
|
74
|
+
"@angular/platform-browser": "~16.0.4",
|
|
75
|
+
"@angular/platform-browser-dynamic": "~16.0.4",
|
|
76
|
+
"@angular/pwa": "~16.0.5",
|
|
77
|
+
"@angular/router": "~16.0.0",
|
|
78
|
+
"@angular/service-worker": "~16.0.4",
|
|
79
|
+
"@babel/cli": "7.18.6",
|
|
80
|
+
"@commitlint/cli": "12.1.1",
|
|
81
|
+
"@commitlint/config-conventional": "12.1.1",
|
|
82
|
+
"@commitlint/prompt-cli": "12.1.1",
|
|
83
|
+
"@compodoc/compodoc": "1.1.20",
|
|
84
|
+
"@iconify/icons-fa-solid": "1.2.2",
|
|
85
|
+
"@iconify/icons-mdi": "1.2.1",
|
|
86
|
+
"@mdi/js": "7.2.96",
|
|
87
|
+
"@ng-matero/extensions": "16.0.0",
|
|
88
|
+
"@ngneat/falso": "6.4.0",
|
|
89
|
+
"@ngneat/hot-toast": "5.0.1",
|
|
90
|
+
"@ngneat/overview": "5.0.0",
|
|
91
|
+
"@ngneat/spectator": "15.0.0",
|
|
92
|
+
"@ngrx/component-store": "~16.0.1",
|
|
93
|
+
"@ngrx/data": "~16.0.1",
|
|
94
|
+
"@ngrx/effects": "~16.0.1",
|
|
95
|
+
"@ngrx/entity": "~16.0.1",
|
|
96
|
+
"@ngrx/router-store": "~16.0.1",
|
|
97
|
+
"@ngrx/schematics": "~16.0.1",
|
|
98
|
+
"@ngrx/store": "~16.0.1",
|
|
99
|
+
"@ngrx/store-devtools": "~16.0.1",
|
|
100
|
+
"@ngx-formly/core": "6.1.7",
|
|
101
|
+
"@ngx-formly/material": "6.1.8",
|
|
102
|
+
"@ngx-translate/core": "15.0.0",
|
|
103
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
104
|
+
"@sweetalert2/ngx-sweetalert2": "12.1.0",
|
|
105
|
+
"@testdeck/jest": "0.3.3",
|
|
106
|
+
"@testdeck/mocha": "0.3.3",
|
|
82
107
|
"@types/chai": "4.1.2",
|
|
83
108
|
"@types/chokidar": "2.1.3",
|
|
84
109
|
"@types/dateformat": "1.0.1",
|
|
85
110
|
"@types/diff": "3.2.2",
|
|
86
111
|
"@types/express": "4.11.0",
|
|
87
|
-
"@types/express-fileupload": "
|
|
112
|
+
"@types/express-fileupload": "1.4.1",
|
|
88
113
|
"@types/fs-extra": "7.0.0",
|
|
89
114
|
"@types/glob": "5.0.35",
|
|
90
115
|
"@types/http-proxy": "1.16.0",
|
|
91
116
|
"@types/http-proxy-middleware": "0.19.2",
|
|
117
|
+
"@types/jest": "29.5.2",
|
|
92
118
|
"@types/json-stringify-safe": "5.0.0",
|
|
93
119
|
"@types/json5": "0.0.29",
|
|
94
120
|
"@types/lockfile": "1.0.0",
|
|
95
121
|
"@types/lodash": "4.14.92",
|
|
96
122
|
"@types/lowdb": "1.0.6",
|
|
97
123
|
"@types/mocha": "5.2.5",
|
|
98
|
-
"@types/node": "
|
|
124
|
+
"@types/node": "16.18.21",
|
|
99
125
|
"@types/node-notifier": "5.4.0",
|
|
100
126
|
"@types/oauth2orize": "1.8.0",
|
|
101
127
|
"@types/password-hash": "1.2.19",
|
|
102
128
|
"@types/progress": "2.0.3",
|
|
103
|
-
"@types/q": "1.
|
|
129
|
+
"@types/q": "1.5.5",
|
|
104
130
|
"@types/rimraf": "2.0.2",
|
|
105
|
-
"@types/
|
|
106
|
-
"@types/socket.io-client": "1.4.32",
|
|
131
|
+
"@types/semver": "6.0.1",
|
|
107
132
|
"@types/systeminformation": "3.23.0",
|
|
108
133
|
"@types/vinyl": "2.0.2",
|
|
109
134
|
"@types/watch": "1.0.0",
|
|
135
|
+
"@vercel/ncc": "0.38.1",
|
|
110
136
|
"accepts": "1.3.4",
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"babel-preset-es2015": "6.24.1",
|
|
120
|
-
"background-worker-process": "~16.100.1",
|
|
137
|
+
"ajv": "8.12.0",
|
|
138
|
+
"angular-material-css-vars": "5.0.2",
|
|
139
|
+
"angular-resize-event": "3.2.0",
|
|
140
|
+
"animate.css": "4.1.1 ",
|
|
141
|
+
"any-project-cli": "~16.100.3",
|
|
142
|
+
"axios": "1.3.5",
|
|
143
|
+
"background-worker-process": "~16.100.3",
|
|
144
|
+
"base32": "0.0.7",
|
|
121
145
|
"bcryptjs": "2.4.3",
|
|
146
|
+
"better-sqlite3": "9.5.0",
|
|
122
147
|
"body-parser": "1.18.2",
|
|
148
|
+
"bootstrap": "4.6.2",
|
|
123
149
|
"buffer-shims": "1.0.0",
|
|
124
150
|
"callsite-record": "4.1.3",
|
|
125
|
-
"chai": "4.
|
|
151
|
+
"chai": "4.3.7",
|
|
126
152
|
"chalk": "2.3.2",
|
|
127
153
|
"check-node-version": "3.2.0",
|
|
128
154
|
"cheerio": "1.0.0-rc.3",
|
|
129
155
|
"chokidar": "3.5.3",
|
|
130
|
-
"circular-dependency-plugin": "4.2.1",
|
|
131
156
|
"circular-json": "0.5.1",
|
|
157
|
+
"class-transformer": "0.5.1",
|
|
158
|
+
"class-validator": "0.14.0",
|
|
132
159
|
"command-exists": "1.2.2",
|
|
133
160
|
"compression": "1.7.4",
|
|
134
161
|
"concurrently": "3.5.1",
|
|
135
162
|
"content-type": "1.0.4",
|
|
163
|
+
"conventional-changelog-cli": "3.0.0",
|
|
136
164
|
"cookie-parser": "1.4.3",
|
|
137
|
-
"copy-paste": "1.3
|
|
138
|
-
"copy-webpack-plugin": "4.1.1",
|
|
139
|
-
"core-js": "2.5.3",
|
|
165
|
+
"copy-paste": "1.5.3",
|
|
140
166
|
"cors": "2.8.4",
|
|
141
167
|
"cpr": "3.0.1",
|
|
142
168
|
"cross-spawn": "7.0.3",
|
|
143
|
-
"css-loader": "0.28.1",
|
|
144
|
-
"cssnano": "3.10.0",
|
|
145
169
|
"dateformat": "3.0.3",
|
|
146
170
|
"detect-mocha": "0.1.0",
|
|
147
171
|
"diff": "3.2.0",
|
|
172
|
+
"electron": "25.2.0",
|
|
173
|
+
"electron-builder": "24.4.0",
|
|
174
|
+
"electron-debug": "3.2.0",
|
|
175
|
+
"electron-reloader": "1.2.3",
|
|
176
|
+
"element-resize-detector": "1.1.15",
|
|
148
177
|
"enquirer": "2.3.0",
|
|
149
178
|
"enum-values": "1.2.1",
|
|
150
179
|
"errorhandler": "1.5.0",
|
|
@@ -152,76 +181,93 @@
|
|
|
152
181
|
"eslint-plugin-import": "2.22.1",
|
|
153
182
|
"eslint-plugin-jsdoc": "30.7.8",
|
|
154
183
|
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
155
|
-
"exports-loader": "0.6.3",
|
|
156
184
|
"express": "4.16.3",
|
|
157
|
-
"express-fileupload": "
|
|
185
|
+
"express-fileupload": "1.4.0",
|
|
186
|
+
"express-session": "1.17.3",
|
|
158
187
|
"file-loader": "1.1.5",
|
|
188
|
+
"file-saver": "2.0.5",
|
|
189
|
+
"file-type": "18.5.0",
|
|
159
190
|
"firedev": "^16",
|
|
160
|
-
"firedev-crud": "~16.100.
|
|
161
|
-
"firedev-crud-deamon": "~16.100.
|
|
162
|
-
"firedev-ports": "~16.100.
|
|
163
|
-
"firedev-storage": "~16.
|
|
164
|
-
"firedev-type-sql": "~16.
|
|
165
|
-
"firedev-typeorm": "~16.
|
|
166
|
-
"firedev-ui": "~16.
|
|
191
|
+
"firedev-crud": "~16.100.3",
|
|
192
|
+
"firedev-crud-deamon": "~16.100.3",
|
|
193
|
+
"firedev-ports": "~16.100.3",
|
|
194
|
+
"firedev-storage": "~16.100.2",
|
|
195
|
+
"firedev-type-sql": "~16.100.2",
|
|
196
|
+
"firedev-typeorm": "~16.100.2",
|
|
197
|
+
"firedev-ui": "~16.100.4",
|
|
167
198
|
"fkill": "6.1.0",
|
|
168
|
-
"
|
|
199
|
+
"font-awesome": "4.7.0",
|
|
200
|
+
"form-data": "4.0.0",
|
|
169
201
|
"fs-extra": "8.1.0",
|
|
170
202
|
"fuzzy": "0.1.3",
|
|
171
203
|
"glob": "7.1.2",
|
|
172
204
|
"gulp": "3.9.1",
|
|
173
|
-
"
|
|
174
|
-
"hammerjs": "2.0.8",
|
|
205
|
+
"helmet": "7.0.0",
|
|
175
206
|
"hostile": "1.3.3",
|
|
176
|
-
"
|
|
177
|
-
"http-proxy": "1.
|
|
207
|
+
"howler": "2.2.3",
|
|
208
|
+
"http-proxy": "1.18.1",
|
|
178
209
|
"http-proxy-middleware": "0.19.1",
|
|
179
210
|
"http-server": "0.11.1",
|
|
180
|
-
"
|
|
211
|
+
"image-focus": "1.2.1",
|
|
212
|
+
"immer": "10.0.2",
|
|
213
|
+
"immutable": "4.3.0",
|
|
214
|
+
"incremental-compiler": "~16.100.3",
|
|
181
215
|
"inquirer": "7.3.3",
|
|
182
216
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
183
|
-
"ionic": "3.19.1",
|
|
184
|
-
"ionic-angular": "3.9.2",
|
|
185
|
-
"ionicons": "3.0.0",
|
|
186
217
|
"is-elevated": "3.0.0",
|
|
187
|
-
"isomorphic-region-loader": "~16.100.
|
|
218
|
+
"isomorphic-region-loader": "~16.100.3",
|
|
188
219
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
189
|
-
"
|
|
190
|
-
"
|
|
220
|
+
"jest": "29.5.0",
|
|
221
|
+
"jest-date-mock": "1.0.8",
|
|
222
|
+
"jest-junit": "16.0.0",
|
|
223
|
+
"jest-marbles": "latest",
|
|
224
|
+
"jest-preset-angular": "13.1.1",
|
|
225
|
+
"jimp": "0.22.8",
|
|
226
|
+
"joi": "17.9.2",
|
|
191
227
|
"jscodeshift": "0.6.3",
|
|
192
228
|
"json-stringify-safe": "5.0.1",
|
|
193
|
-
"json10": "~16.
|
|
194
|
-
"json5": "2.1
|
|
229
|
+
"json10": "~16.100.2",
|
|
230
|
+
"json5": "2.2.1",
|
|
195
231
|
"json5-writer": "0.2.0",
|
|
196
|
-
"
|
|
197
|
-
"karma-chrome-launcher": "2.2.0",
|
|
232
|
+
"jszip": "3.10.1",
|
|
198
233
|
"karma-cli": "1.0.1",
|
|
199
|
-
"karma-coverage-istanbul-reporter": "1.3.0",
|
|
200
|
-
"karma-jasmine": "1.1.0",
|
|
201
|
-
"karma-jasmine-html-reporter": "0.2.2",
|
|
202
|
-
"less-loader": "4.0.5",
|
|
203
234
|
"lnk": "1.0.1",
|
|
235
|
+
"localforage": "1.10.0",
|
|
204
236
|
"lockfile": "1.0.4",
|
|
205
|
-
"lodash": "4.17.
|
|
206
|
-
"lodash-walk-object": "~16.
|
|
237
|
+
"lodash": "4.17.20",
|
|
238
|
+
"lodash-walk-object": "~16.100.2",
|
|
207
239
|
"lowdb": "1.0.0",
|
|
208
|
-
"magic-renamer": "~16.100.
|
|
240
|
+
"magic-renamer": "~16.100.3",
|
|
241
|
+
"material-design-icons": "3.0.1",
|
|
209
242
|
"method-override": "2.3.10",
|
|
210
243
|
"minimist": "1.2.0",
|
|
211
244
|
"mkdirp": "0.5.1",
|
|
212
|
-
"mocha": "
|
|
213
|
-
"moment": "2.
|
|
245
|
+
"mocha": "10.2.0",
|
|
246
|
+
"moment": "2.29.3",
|
|
214
247
|
"morphi": "~16.5.17",
|
|
215
|
-
"ng-
|
|
216
|
-
"ng-
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
248
|
+
"ng-for-track-by-property": "16.0.1",
|
|
249
|
+
"ng-in-viewport": "15.0.2",
|
|
250
|
+
"ng-lock": "16.0.1",
|
|
251
|
+
"ng-packagr": "16.0.1",
|
|
252
|
+
"ng-talkback": "~16.100.2",
|
|
253
|
+
"ng2-logger": "~16.100.4",
|
|
254
|
+
"ng2-rest": "~16.100.2",
|
|
255
|
+
"ngx-ace-wrapper": "14.0.0",
|
|
256
|
+
"ngx-editor": "15.3.0",
|
|
257
|
+
"ngx-highlightjs": "9.0.0",
|
|
258
|
+
"ngx-moment": "6.0.2",
|
|
259
|
+
"ngx-monaco-editor": "12.0.0",
|
|
260
|
+
"ngx-photo-editor": "0.4.4",
|
|
261
|
+
"ngx-pipes": "3.2.2",
|
|
262
|
+
"ngx-progressbar": "11.0.0",
|
|
263
|
+
"ngx-scrollbar": "12.0.0",
|
|
264
|
+
"ngx-scrolltop": "6.0.0",
|
|
265
|
+
"ngx-store": "3.1.1",
|
|
266
|
+
"ngx-typed-js": "2.1.1",
|
|
267
|
+
"node-cli-tester": "~16.100.2",
|
|
223
268
|
"node-localstorage": "2.1.6",
|
|
224
269
|
"node-notifier": "6.0.0",
|
|
270
|
+
"node-polyfill-webpack-plugin": "2.0.1",
|
|
225
271
|
"nodemon": "1.14.11",
|
|
226
272
|
"npm-get-dependents": "1.0.1",
|
|
227
273
|
"npm-run": "4.1.2",
|
|
@@ -231,61 +277,65 @@
|
|
|
231
277
|
"passport": "0.3.2",
|
|
232
278
|
"passport-http-bearer": "1.0.1",
|
|
233
279
|
"password-hash": "1.2.2",
|
|
280
|
+
"path-to-regexp": "6.2.2",
|
|
281
|
+
"pica": "9.0.1",
|
|
234
282
|
"portfinder": "1.0.21",
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
283
|
+
"prettier": "3.0.0",
|
|
284
|
+
"pretty-error": "4.0.0",
|
|
285
|
+
"primeflex": "3.3.1",
|
|
286
|
+
"primeicons": "6.0.1",
|
|
287
|
+
"primeng": "16.7.0",
|
|
239
288
|
"progress": "2.0.3",
|
|
240
289
|
"prompts": "0.1.8",
|
|
241
|
-
"protractor": "5.2.0",
|
|
242
290
|
"ps-list": "6.1.0",
|
|
243
291
|
"ps-node": "0.1.6",
|
|
244
292
|
"q": "1.5.1",
|
|
293
|
+
"rallax.js": "2.0.4",
|
|
245
294
|
"randomcolor": "0.5.3",
|
|
246
|
-
"
|
|
247
|
-
"record-replay-req-res-scenario": "~16.5.19",
|
|
295
|
+
"record-replay-req-res-scenario": "~16.100.2",
|
|
248
296
|
"reflect-metadata": "0.1.10",
|
|
249
297
|
"rimraf": "2.6.2",
|
|
250
|
-
"rxjs": "~
|
|
251
|
-
"
|
|
252
|
-
"sass-variable-loader": "0.1.2",
|
|
298
|
+
"rxjs": "~7.8.0",
|
|
299
|
+
"semver": "6.3.0",
|
|
253
300
|
"simple-git": "1.96.0",
|
|
301
|
+
"sinon": "15.2.0",
|
|
254
302
|
"sloc": "0.2.0",
|
|
255
303
|
"socket.io": "2.4.1",
|
|
256
304
|
"sort-package-json": "1.11.0",
|
|
257
|
-
"
|
|
258
|
-
"static-columns": "~16.
|
|
305
|
+
"sql.js": "1.8.0",
|
|
306
|
+
"static-columns": "~16.100.2",
|
|
259
307
|
"string-similarity": "4.0.2",
|
|
260
|
-
"style-loader": "0.13.1",
|
|
261
|
-
"stylus-loader": "3.0.1",
|
|
262
308
|
"sudo-block": "3.0.0",
|
|
263
|
-
"
|
|
309
|
+
"supertest": "6.3.3",
|
|
310
|
+
"sweetalert2": "11.7.12",
|
|
264
311
|
"systeminformation": "3.45.7",
|
|
265
|
-
"
|
|
266
|
-
"tnp-
|
|
267
|
-
"tnp-
|
|
268
|
-
"tnp-
|
|
269
|
-
"tnp-
|
|
270
|
-
"tnp-
|
|
312
|
+
"threads": "1.7.0",
|
|
313
|
+
"tnp-cli": "~16.100.2",
|
|
314
|
+
"tnp-config": "~16.100.4",
|
|
315
|
+
"tnp-core": "~16.100.6",
|
|
316
|
+
"tnp-db": "~16.100.3",
|
|
317
|
+
"tnp-helpers": "~16.100.3",
|
|
318
|
+
"ts-debug": "1.3.0",
|
|
271
319
|
"ts-loader": "2.3.1",
|
|
272
|
-
"ts-node": "
|
|
273
|
-
"
|
|
274
|
-
"tslib": "~2.2.0",
|
|
320
|
+
"ts-node": "10.9.1",
|
|
321
|
+
"tslib": "~2.3.0",
|
|
275
322
|
"tslint": "5.9.1",
|
|
276
|
-
"
|
|
277
|
-
"typescript
|
|
278
|
-
"
|
|
323
|
+
"turndown": "7.1.2",
|
|
324
|
+
"typescript": "~5.0.2",
|
|
325
|
+
"typescript-class-helpers": "~16.100.4",
|
|
326
|
+
"typescript-formatter": "~7.2.2",
|
|
279
327
|
"underscore": "1.9.1",
|
|
280
|
-
"url-loader": "0.6.2",
|
|
281
328
|
"uuid": "8.3.2",
|
|
282
|
-
"
|
|
329
|
+
"validator": "9.2.0",
|
|
330
|
+
"video.js": "8.3.0",
|
|
331
|
+
"vpn-split": "~16.100.2",
|
|
283
332
|
"watch": "1.0.2",
|
|
284
|
-
"webpack": "~
|
|
285
|
-
"webpack-
|
|
286
|
-
"webpack-dev-server": "~
|
|
287
|
-
"
|
|
333
|
+
"webpack": "~5.80",
|
|
334
|
+
"webpack-dev-middleware": "~6.0.2",
|
|
335
|
+
"webpack-dev-server": "~4.13.2",
|
|
336
|
+
"yup": "1.1.1",
|
|
337
|
+
"zone.js": "~0.13.0"
|
|
288
338
|
},
|
|
289
|
-
"lastBuildTagHash": "
|
|
339
|
+
"lastBuildTagHash": "7c6857b8b2d07404f0d6424b71eab17b8c6b2314",
|
|
290
340
|
"main": "dist/app.electron.js"
|
|
291
341
|
}
|
|
@@ -22,7 +22,7 @@ export declare class BaseCommandLine<PARAMS = any, PROJECT extends BaseProject<a
|
|
|
22
22
|
/**
|
|
23
23
|
* push to all origins
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
pushAll(force?: boolean): Promise<void>;
|
|
26
26
|
forcePush(): Promise<void>;
|
|
27
27
|
pushForce(): Promise<void>;
|
|
28
28
|
push(options?: {
|
|
@@ -30,6 +30,7 @@ export declare class BaseCommandLine<PARAMS = any, PROJECT extends BaseProject<a
|
|
|
30
30
|
typeofCommit?: TypeOfCommit;
|
|
31
31
|
origin?: string;
|
|
32
32
|
commitMessageRequired?: boolean;
|
|
33
|
+
noExit?: boolean;
|
|
33
34
|
}): Promise<void>;
|
|
34
35
|
melt(): Promise<void>;
|
|
35
36
|
private meltUpdateCommits;
|
|
@@ -74,6 +75,7 @@ export declare class BaseCommandLine<PARAMS = any, PROJECT extends BaseProject<a
|
|
|
74
75
|
*/
|
|
75
76
|
info(): Promise<void>;
|
|
76
77
|
modified(): void;
|
|
78
|
+
UPDATE(): Promise<void>;
|
|
77
79
|
BRANCH_NAME(): void;
|
|
78
80
|
REMOTES(): void;
|
|
79
81
|
private __filterBranchesByPattern;
|