tnp-core 16.444.9 → 16.444.13
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 +20 -20
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/browser/esm2022/lib/core-models.mjs +2 -1
- package/browser/esm2022/lib/helpers.mjs +5 -1
- package/browser/fesm2022/tnp-core.mjs +5 -0
- package/browser/fesm2022/tnp-core.mjs.map +1 -1
- package/browser/lib/core-models.d.ts +32 -4
- package/cli.backend.js +3 -3
- package/client/README.md +24 -24
- package/client/esm2022/lib/core-models.mjs +2 -1
- package/client/esm2022/lib/helpers.mjs +5 -1
- package/client/fesm2022/tnp-core.mjs +5 -0
- package/client/fesm2022/tnp-core.mjs.map +1 -1
- package/client/lib/core-models.d.ts +32 -4
- package/client/package.json +22 -22
- package/firedev.jsonc +68 -68
- package/lib/core-models.d.ts +32 -4
- package/lib/core-models.js +3 -0
- package/lib/core-models.js.map +1 -1
- package/lib/helpers.js +4 -2
- package/lib/helpers.js.map +1 -1
- package/lib/node-chalk-mock.js +3 -3
- package/lib/node-path-mock.js +3 -3
- package/package.json +3 -3
- package/tmp-environment.json +25 -25
- package/websql/README.md +24 -24
- package/websql/esm2022/lib/core-models.mjs +2 -1
- package/websql/esm2022/lib/helpers.mjs +5 -1
- package/websql/fesm2022/tnp-core.mjs +5 -0
- package/websql/fesm2022/tnp-core.mjs.map +1 -1
- package/websql/lib/core-models.d.ts +32 -4
@@ -1,28 +1,56 @@
|
|
1
1
|
// @ts-nocheck
|
2
2
|
export declare namespace CoreModels {
|
3
|
+
export type Package = {
|
4
|
+
name: string;
|
5
|
+
version?: string;
|
6
|
+
installType?: InstalationType;
|
7
|
+
};
|
8
|
+
export type NpmInstallOptions = {
|
9
|
+
pkg?: CoreModels.Package;
|
10
|
+
silent?: boolean;
|
11
|
+
remove?: boolean;
|
12
|
+
useYarn?: boolean;
|
13
|
+
force?: boolean;
|
14
|
+
reason?: string;
|
15
|
+
removeYarnOrPackageJsonLock?: boolean;
|
16
|
+
generateYarnOrPackageJsonLock?: boolean;
|
17
|
+
ignoreOptional?: boolean;
|
18
|
+
};
|
19
|
+
export type InstalationType = '-g' | '--save' | '--save-dev';
|
20
|
+
export const InstalationTypeArr: string[];
|
21
|
+
export type LibraryType = 'angular' | 'typescript';
|
3
22
|
export type ReleaseType = 'major' | 'minor' | 'patch';
|
4
23
|
export type PROGRESS_DATA_TYPE = 'info' | 'error' | 'warning' | 'event';
|
5
24
|
export type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
6
25
|
export type PUSHTYPE = 'feat' | 'chore' | 'feature' | 'refactor' | 'perf' | 'styles' | 'ci' | 'build' | 'fix' | 'bugfix' | 'release' | 'docs';
|
26
|
+
/**
|
27
|
+
* @deprecated
|
28
|
+
*/
|
7
29
|
export type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
8
|
-
export type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v16' | 'v18' | '
|
9
|
-
export type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
30
|
+
export type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v16' | 'v18' | 'v20';
|
31
|
+
export type CutableFileExt = 'scss' | 'css' | 'less' | 'sass' | 'html' | 'ts' | 'tsx' | 'js';
|
10
32
|
export type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
11
|
-
export type FileExtension = '
|
33
|
+
export type FileExtension = 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
12
34
|
export type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
13
35
|
export type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
14
36
|
export type TsUsage = 'import' | 'export';
|
15
37
|
export type BaseProjectType = 'typescript' | 'angular' | 'angular-lib' | 'unknow' | 'unknow-npm-project';
|
16
38
|
export const BaseProjectTypeArr: string[];
|
17
39
|
export type LibType = BaseProjectType | 'isomorphic-lib' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project';
|
40
|
+
/**
|
41
|
+
* @deprecated
|
42
|
+
*/
|
18
43
|
export type NewFactoryType = LibType | 'model' | 'single-file-project';
|
44
|
+
/**
|
45
|
+
* @deprecated
|
46
|
+
*/
|
19
47
|
export type CoreLibCategory = LibType | 'common';
|
20
48
|
export type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
21
49
|
/**
|
22
50
|
* @deprecated
|
23
51
|
*/
|
24
52
|
export type OutFolder = 'dist' | 'browser';
|
25
|
-
export type DatabaseType = '
|
53
|
+
export type DatabaseType = ':inmemory' | 'mysql' | 'sqljs';
|
26
54
|
export interface UploadedBackendFile {
|
27
55
|
data: any;
|
28
56
|
encoding: string;
|
package/client/package.json
CHANGED
@@ -171,7 +171,7 @@
|
|
171
171
|
"angular-material-css-vars": "5.0.2",
|
172
172
|
"angular-resize-event": "3.2.0",
|
173
173
|
"animate.css": "4.1.1 ",
|
174
|
-
"any-project-cli": "~16.444.
|
174
|
+
"any-project-cli": "~16.444.8",
|
175
175
|
"app-root-path": "3.0.0",
|
176
176
|
"background-worker-process": "~16.100.10",
|
177
177
|
"base32": "0.0.7",
|
@@ -221,11 +221,11 @@
|
|
221
221
|
"file-saver": "2.0.5",
|
222
222
|
"file-type": "18.5.0",
|
223
223
|
"firedev": "^16",
|
224
|
-
"firedev-crud": "~16.444.
|
225
|
-
"firedev-crud-deamon": "~16.444.
|
226
|
-
"firedev-ports": "~16.444.
|
224
|
+
"firedev-crud": "~16.444.8",
|
225
|
+
"firedev-crud-deamon": "~16.444.8",
|
226
|
+
"firedev-ports": "~16.444.8",
|
227
227
|
"firedev-storage": "~16.444.5",
|
228
|
-
"firedev-type-sql": "~16.444.
|
228
|
+
"firedev-type-sql": "~16.444.8",
|
229
229
|
"firedev-typeorm": "~16.444.5",
|
230
230
|
"firedev-ui": "~16.444.1",
|
231
231
|
"font-awesome": "4.7.0",
|
@@ -242,10 +242,10 @@
|
|
242
242
|
"image-focus": "1.2.1",
|
243
243
|
"immer": "10.0.2",
|
244
244
|
"immutable": "4.3.0",
|
245
|
-
"incremental-compiler": "~16.444.
|
245
|
+
"incremental-compiler": "~16.444.9",
|
246
246
|
"inquirer": "7.3.3",
|
247
247
|
"inquirer-autocomplete-prompt": "1.3.0",
|
248
|
-
"isomorphic-region-loader": "~16.444.
|
248
|
+
"isomorphic-region-loader": "~16.444.8",
|
249
249
|
"istanbul-instrumenter-loader": "2.0.0",
|
250
250
|
"jest": "29.5.0",
|
251
251
|
"jest-date-mock": "1.0.8",
|
@@ -256,17 +256,17 @@
|
|
256
256
|
"joi": "17.9.2",
|
257
257
|
"jscodeshift": "0.6.3",
|
258
258
|
"json-stringify-safe": "5.0.1",
|
259
|
-
"json10": "~16.444.
|
260
|
-
"json10-writer": "~16.444.
|
259
|
+
"json10": "~16.444.8",
|
260
|
+
"json10-writer": "~16.444.8",
|
261
261
|
"json5-writer": "0.2.0",
|
262
262
|
"jszip": "3.10.1",
|
263
263
|
"karma-cli": "1.0.1",
|
264
264
|
"lnk": "1.0.1",
|
265
265
|
"localforage": "1.10.0",
|
266
266
|
"lockfile": "1.0.4",
|
267
|
-
"lodash-walk-object": "~16.444.
|
267
|
+
"lodash-walk-object": "~16.444.7",
|
268
268
|
"lowdb": "7.0.1",
|
269
|
-
"magic-renamer": "~16.444.
|
269
|
+
"magic-renamer": "~16.444.7",
|
270
270
|
"material-design-icons": "3.0.1",
|
271
271
|
"method-override": "2.3.10",
|
272
272
|
"minimist": "1.2.0",
|
@@ -276,9 +276,9 @@
|
|
276
276
|
"ng-lock": "16.0.1",
|
277
277
|
"ng-packagr": "16.0.1",
|
278
278
|
"ng-talkback": "~16.444.1",
|
279
|
-
"ng2-logger": "~16.444.
|
279
|
+
"ng2-logger": "~16.444.8",
|
280
280
|
"ng2-pdfjs-viewer": "16.0.4",
|
281
|
-
"ng2-rest": "~16.444.
|
281
|
+
"ng2-rest": "~16.444.7",
|
282
282
|
"ngx-ace-wrapper": "14.0.0",
|
283
283
|
"ngx-editor": "15.3.0",
|
284
284
|
"ngx-highlightjs": "9.0.0",
|
@@ -336,11 +336,11 @@
|
|
336
336
|
"task.js": "0.1.5",
|
337
337
|
"threads": "1.7.0",
|
338
338
|
"tnp-cli": "~16.444.1",
|
339
|
-
"tnp-config": "~16.444.
|
340
|
-
"tnp-core": "~16.444.
|
341
|
-
"tnp-db": "~16.444.
|
342
|
-
"tnp-helpers": "~16.444.
|
343
|
-
"tnp-models": "~16.444.
|
339
|
+
"tnp-config": "~16.444.8",
|
340
|
+
"tnp-core": "~16.444.11",
|
341
|
+
"tnp-db": "~16.444.7",
|
342
|
+
"tnp-helpers": "~16.444.16",
|
343
|
+
"tnp-models": "~16.444.8",
|
344
344
|
"ts-debug": "1.3.0",
|
345
345
|
"ts-json-schema-generator": "2.1.1",
|
346
346
|
"ts-loader": "2.3.1",
|
@@ -351,7 +351,7 @@
|
|
351
351
|
"typedoc": "0.25.13",
|
352
352
|
"typedoc-plugin-markdown": "4.0.3",
|
353
353
|
"typescript": "~5.0.2",
|
354
|
-
"typescript-class-helpers": "~16.444.
|
354
|
+
"typescript-class-helpers": "~16.444.8",
|
355
355
|
"typescript-formatter": "~7.2.2",
|
356
356
|
"underscore": "1.9.1",
|
357
357
|
"uuid": "8.3.2",
|
@@ -370,7 +370,7 @@
|
|
370
370
|
"license": "MIT",
|
371
371
|
"private": false,
|
372
372
|
"name": "tnp-core",
|
373
|
-
"version": "16.444.
|
374
|
-
"lastBuildTagHash": "
|
375
|
-
"main": "
|
373
|
+
"version": "16.444.13",
|
374
|
+
"lastBuildTagHash": "9cccf9f0d189d6012e8b6bcb08a52b72deb77d7d",
|
375
|
+
"main": "index.js"
|
376
376
|
}
|
package/firedev.jsonc
CHANGED
@@ -1,69 +1,69 @@
|
|
1
|
-
{
|
2
|
-
"resources": ["README.md"],
|
3
|
-
|
4
|
-
"overrided": {
|
5
|
-
"ignoreDepsPattern": [],
|
6
|
-
"includeAsDev": [],
|
7
|
-
|
8
|
-
"includeOnly": [
|
9
|
-
"axios",
|
10
|
-
"glob",
|
11
|
-
"moment",
|
12
|
-
"fkill",
|
13
|
-
"copy-paste",
|
14
|
-
"chokidar",
|
15
|
-
"fs-extra",
|
16
|
-
"rimraf",
|
17
|
-
"mkdirp",
|
18
|
-
"lodash",
|
19
|
-
"@types/lodash",
|
20
|
-
"ps-list",
|
21
|
-
"ps-node",
|
22
|
-
"q",
|
23
|
-
"@types/q",
|
24
|
-
"json5",
|
25
|
-
"is-elevated",
|
26
|
-
"portfinder",
|
27
|
-
"cross-spawn",
|
28
|
-
"chalk",
|
29
|
-
"copy-paste",
|
30
|
-
"is-root",
|
31
|
-
"is-admin",
|
32
|
-
"dateformat",
|
33
|
-
],
|
34
|
-
|
35
|
-
"dependencies": {},
|
36
|
-
"linkedFolders": [],
|
37
|
-
"npmFixes": [],
|
38
|
-
},
|
39
|
-
|
40
|
-
"smartContainerBuildTarget": "",
|
41
|
-
"linkedRepos": [],
|
42
|
-
|
43
|
-
"libReleaseOptions": {
|
44
|
-
"nodts": false,
|
45
|
-
"obscure": false,
|
46
|
-
"ugly": false,
|
47
|
-
"includeNodeModules": false,
|
48
|
-
"cliBuildNoDts": false,
|
49
|
-
"cliBuildObscure": false,
|
50
|
-
"cliBuildIncludeNodeModules": false,
|
51
|
-
"cliBuildUglify": false,
|
52
|
-
},
|
53
|
-
|
54
|
-
"smartContainerTarget": "",
|
55
|
-
"type": "isomorphic-lib",
|
56
|
-
"isCoreProject": false,
|
57
|
-
"useFramework": false,
|
58
|
-
"required": [],
|
59
|
-
"version": "v16",
|
60
|
-
|
61
|
-
"additionalNpmNames": ["firedev-core"],
|
62
|
-
|
63
|
-
"isGenerated": false,
|
64
|
-
"requiredServers": [],
|
65
|
-
"license": "MIT",
|
66
|
-
"private": false,
|
67
|
-
"main": "index.js",
|
68
|
-
"workerPlugins": {},
|
1
|
+
{
|
2
|
+
"resources": ["README.md"],
|
3
|
+
|
4
|
+
"overrided": {
|
5
|
+
"ignoreDepsPattern": [],
|
6
|
+
"includeAsDev": [],
|
7
|
+
|
8
|
+
"includeOnly": [
|
9
|
+
"axios",
|
10
|
+
"glob",
|
11
|
+
"moment",
|
12
|
+
"fkill",
|
13
|
+
"copy-paste",
|
14
|
+
"chokidar",
|
15
|
+
"fs-extra",
|
16
|
+
"rimraf",
|
17
|
+
"mkdirp",
|
18
|
+
"lodash",
|
19
|
+
"@types/lodash",
|
20
|
+
"ps-list",
|
21
|
+
"ps-node",
|
22
|
+
"q",
|
23
|
+
"@types/q",
|
24
|
+
"json5",
|
25
|
+
"is-elevated",
|
26
|
+
"portfinder",
|
27
|
+
"cross-spawn",
|
28
|
+
"chalk",
|
29
|
+
"copy-paste",
|
30
|
+
"is-root",
|
31
|
+
"is-admin",
|
32
|
+
"dateformat",
|
33
|
+
],
|
34
|
+
|
35
|
+
"dependencies": {},
|
36
|
+
"linkedFolders": [],
|
37
|
+
"npmFixes": [],
|
38
|
+
},
|
39
|
+
|
40
|
+
"smartContainerBuildTarget": "",
|
41
|
+
"linkedRepos": [],
|
42
|
+
|
43
|
+
"libReleaseOptions": {
|
44
|
+
"nodts": false,
|
45
|
+
"obscure": false,
|
46
|
+
"ugly": false,
|
47
|
+
"includeNodeModules": false,
|
48
|
+
"cliBuildNoDts": false,
|
49
|
+
"cliBuildObscure": false,
|
50
|
+
"cliBuildIncludeNodeModules": false,
|
51
|
+
"cliBuildUglify": false,
|
52
|
+
},
|
53
|
+
|
54
|
+
"smartContainerTarget": "",
|
55
|
+
"type": "isomorphic-lib",
|
56
|
+
"isCoreProject": false,
|
57
|
+
"useFramework": false,
|
58
|
+
"required": [],
|
59
|
+
"version": "v16",
|
60
|
+
|
61
|
+
"additionalNpmNames": ["firedev-core"],
|
62
|
+
|
63
|
+
"isGenerated": false,
|
64
|
+
"requiredServers": [],
|
65
|
+
"license": "MIT",
|
66
|
+
"private": false,
|
67
|
+
"main": "index.js",
|
68
|
+
"workerPlugins": {},
|
69
69
|
}
|
package/lib/core-models.d.ts
CHANGED
@@ -1,28 +1,56 @@
|
|
1
1
|
/// <reference types="node" />
|
2
2
|
export declare namespace CoreModels {
|
3
|
+
export type Package = {
|
4
|
+
name: string;
|
5
|
+
version?: string;
|
6
|
+
installType?: InstalationType;
|
7
|
+
};
|
8
|
+
export type NpmInstallOptions = {
|
9
|
+
pkg?: CoreModels.Package;
|
10
|
+
silent?: boolean;
|
11
|
+
remove?: boolean;
|
12
|
+
useYarn?: boolean;
|
13
|
+
force?: boolean;
|
14
|
+
reason?: string;
|
15
|
+
removeYarnOrPackageJsonLock?: boolean;
|
16
|
+
generateYarnOrPackageJsonLock?: boolean;
|
17
|
+
ignoreOptional?: boolean;
|
18
|
+
};
|
19
|
+
export type InstalationType = '-g' | '--save' | '--save-dev';
|
20
|
+
export const InstalationTypeArr: string[];
|
21
|
+
export type LibraryType = 'angular' | 'typescript';
|
3
22
|
export type ReleaseType = 'major' | 'minor' | 'patch';
|
4
23
|
export type PROGRESS_DATA_TYPE = 'info' | 'error' | 'warning' | 'event';
|
5
24
|
export type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
6
25
|
export type PUSHTYPE = 'feat' | 'chore' | 'feature' | 'refactor' | 'perf' | 'styles' | 'ci' | 'build' | 'fix' | 'bugfix' | 'release' | 'docs';
|
26
|
+
/**
|
27
|
+
* @deprecated
|
28
|
+
*/
|
7
29
|
export type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
8
|
-
export type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v16' | 'v18' | '
|
9
|
-
export type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
30
|
+
export type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v16' | 'v18' | 'v20';
|
31
|
+
export type CutableFileExt = 'scss' | 'css' | 'less' | 'sass' | 'html' | 'ts' | 'tsx' | 'js';
|
10
32
|
export type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
11
|
-
export type FileExtension = '
|
33
|
+
export type FileExtension = 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
12
34
|
export type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
13
35
|
export type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
14
36
|
export type TsUsage = 'import' | 'export';
|
15
37
|
export type BaseProjectType = 'typescript' | 'angular' | 'angular-lib' | 'unknow' | 'unknow-npm-project';
|
16
38
|
export const BaseProjectTypeArr: string[];
|
17
39
|
export type LibType = BaseProjectType | 'isomorphic-lib' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project';
|
40
|
+
/**
|
41
|
+
* @deprecated
|
42
|
+
*/
|
18
43
|
export type NewFactoryType = LibType | 'model' | 'single-file-project';
|
44
|
+
/**
|
45
|
+
* @deprecated
|
46
|
+
*/
|
19
47
|
export type CoreLibCategory = LibType | 'common';
|
20
48
|
export type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
21
49
|
/**
|
22
50
|
* @deprecated
|
23
51
|
*/
|
24
52
|
export type OutFolder = 'dist' | 'browser';
|
25
|
-
export type DatabaseType = '
|
53
|
+
export type DatabaseType = ':inmemory' | 'mysql' | 'sqljs';
|
26
54
|
export interface UploadedBackendFile {
|
27
55
|
data: any | Buffer;
|
28
56
|
encoding: string;
|
package/lib/core-models.js
CHANGED
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CoreModels = void 0;
|
4
4
|
var CoreModels;
|
5
5
|
(function (CoreModels) {
|
6
|
+
CoreModels.InstalationTypeArr = ['-g', '--save', '--save-dev'];
|
7
|
+
//#endregion
|
8
|
+
//#region base project type arr
|
6
9
|
CoreModels.BaseProjectTypeArr = [
|
7
10
|
'typescript',
|
8
11
|
'angular',
|
package/lib/core-models.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"core-models.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,IAAiB,UAAU,
|
1
|
+
{"version":3,"file":"core-models.js","sourceRoot":"","sources":[""],"names":[],"mappings":"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"}
|
package/lib/helpers.js
CHANGED
@@ -342,11 +342,13 @@ var HelpersCore = /** @class */ (function (_super) {
|
|
342
342
|
};
|
343
343
|
Object.defineProperty(HelpersCore.prototype, "isRunningInGitBash", {
|
344
344
|
get: function () {
|
345
|
-
var _a, _b, _c;
|
345
|
+
var _a, _b, _c, _d, _e;
|
346
346
|
//#region @backendFunc
|
347
347
|
// console.log('TERM', process.env.TERM);
|
348
348
|
// console.log('MSYSTEM', process.env.MSYSTEM);
|
349
|
-
return ((_b = (_a = process.env) === null || _a === void 0 ? void 0 : _a.TERM) === null || _b === void 0 ? void 0 : _b.search('
|
349
|
+
return ((((_b = (_a = process.env) === null || _a === void 0 ? void 0 : _a.TERM) === null || _b === void 0 ? void 0 : _b.search('cygwin')) !== -1 ||
|
350
|
+
((_d = (_c = process.env) === null || _c === void 0 ? void 0 : _c.TERM) === null || _d === void 0 ? void 0 : _d.search('xterm')) !== -1) &&
|
351
|
+
!!((_e = process.env) === null || _e === void 0 ? void 0 : _e.MSYSTEM));
|
350
352
|
//#endregion
|
351
353
|
},
|
352
354
|
enumerable: false,
|