tnp-config 13.1.71 → 13.1.72
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 +17 -17
- package/assets/shared/shared_folder_info.txt +1 -1
- package/browser/README.md +24 -24
- package/browser/esm2020/lib/config.mjs +770 -770
- package/browser/esm2020/lib/index.mjs +3 -3
- package/browser/esm2020/public-api.mjs +1 -1
- package/browser/esm2020/tnp-config.mjs +4 -4
- package/browser/fesm2015/tnp-config.mjs +689 -689
- package/browser/fesm2020/tnp-config.mjs +763 -763
- package/browser/lib/config.d.ts +228 -228
- package/browser/tnp-config.d.ts +4 -4
- package/client/README.md +24 -24
- package/client/esm2020/lib/config.mjs +770 -770
- package/client/esm2020/lib/index.mjs +3 -3
- package/client/esm2020/public-api.mjs +1 -1
- package/client/esm2020/tnp-config.mjs +4 -4
- package/client/fesm2015/tnp-config.mjs +689 -689
- package/client/fesm2020/tnp-config.mjs +763 -763
- package/client/lib/config.d.ts +228 -228
- package/client/package.json +30 -31
- package/client/tnp-config.d.ts +4 -4
- package/index.d.ts +1 -1
- package/lib/config.d.ts +438 -438
- package/lib/index.d.ts +1 -1
- package/package.json +4 -244
- package/package.json_devDependencies.json +218 -218
- package/package.json_tnp.json5 +35 -35
- package/tmp-environment.json +34 -35
- package/websql/README.md +24 -24
- package/websql/esm2020/lib/config.mjs +770 -770
- package/websql/esm2020/lib/index.mjs +3 -3
- package/websql/esm2020/public-api.mjs +1 -1
- package/websql/esm2020/tnp-config.mjs +4 -4
- package/websql/fesm2015/tnp-config.mjs +689 -689
- package/websql/fesm2020/tnp-config.mjs +763 -763
- package/websql/lib/config.d.ts +228 -228
- package/websql/tnp-config.d.ts +4 -4
package/client/lib/config.d.ts
CHANGED
@@ -1,230 +1,230 @@
|
|
1
1
|
// @ts-nocheck
|
2
|
-
/**
|
3
|
-
* Dariusz Filipiak
|
4
|
-
* @author darekf77@gmail.com
|
5
|
-
* Recommended config for all isomorphic libs *
|
6
|
-
*/
|
7
|
-
export { CoreHelpers as Helpers } from 'tnp-core/browser';
|
8
|
-
export declare namespace ConfigModels {
|
9
|
-
type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
10
|
-
type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
11
|
-
type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5';
|
12
|
-
type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
13
|
-
type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
14
|
-
type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
15
|
-
type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
16
|
-
type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
17
|
-
type TsUsage = 'import' | 'export';
|
18
|
-
type LibType = 'unknow' | 'isomorphic-lib' | 'angular-lib' | 'electron-client' | 'ionic-lib' | 'angular-client' | 'ionic-client' | 'workspace' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project' | 'scenario' | 'navi' | 'leaf' | 'game-engine-lib-pixi' | 'game-engine-lib-phaser' | 'game-engine-lib-excalibur' | 'game-engine-lib-babylon';
|
19
|
-
type NewFactoryType = LibType | 'model' | 'single-file-project';
|
20
|
-
type CoreLibCategory = LibType | 'common';
|
21
|
-
interface Position {
|
22
|
-
x: number;
|
23
|
-
y: number;
|
24
|
-
}
|
25
|
-
interface Size {
|
26
|
-
w: number;
|
27
|
-
h: number;
|
28
|
-
}
|
29
|
-
interface GlobalNpmDependency {
|
30
|
-
name: string;
|
31
|
-
installName?: string;
|
32
|
-
version?: string | number;
|
33
|
-
}
|
34
|
-
interface GlobalCommandLineProgramDependency {
|
35
|
-
name: string;
|
36
|
-
website: string;
|
37
|
-
version?: string;
|
38
|
-
}
|
39
|
-
interface GlobalDependencies {
|
40
|
-
npm?: GlobalNpmDependency[];
|
41
|
-
programs?: GlobalCommandLineProgramDependency[];
|
42
|
-
}
|
43
|
-
type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
44
|
-
type OutFolder = 'dist' | 'bundle' | 'browser';
|
45
|
-
type FormlyInputType = 'input' | 'switch' | 'datepicker' | 'repeat' | 'group';
|
46
|
-
type DatabaseType = 'better-sqlite3' | 'mysql';
|
47
|
-
}
|
48
|
-
export declare const GlobalLibTypeName: {};
|
49
|
-
export declare const LibTypeArr: ConfigModels.LibType[];
|
50
|
-
export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
|
51
|
-
export declare const config: {
|
52
|
-
packagesThat: {
|
53
|
-
areTrustedForPatchUpdate: any[];
|
54
|
-
};
|
55
|
-
coreProjectVersions: string[];
|
56
|
-
quickFixes: {};
|
57
|
-
packageJsonSplit: any[];
|
58
|
-
regexString: {
|
59
|
-
pathPartStringRegex: string;
|
60
|
-
};
|
61
|
-
placeholders: {
|
62
|
-
forProjectsInEnvironmentFile: string;
|
63
|
-
};
|
64
|
-
array: {
|
65
|
-
isomorphicPackages: string;
|
66
|
-
};
|
67
|
-
defaultFrameworkVersion: ConfigModels.FrameworkVersion;
|
68
|
-
CONST: {};
|
69
|
-
debug: {};
|
70
|
-
frameworkName: "firedev" | "tnp";
|
71
|
-
frameworkNames: {
|
72
|
-
tnp: string;
|
73
|
-
firedev: string;
|
74
|
-
};
|
75
|
-
startPort: number;
|
76
|
-
frameworks: ConfigModels.UIFramework[];
|
77
|
-
allowedEnvironments: ConfigModels.EnvironmentName[];
|
78
|
-
folder: {
|
79
|
-
bundle: string;
|
80
|
-
vendor: string;
|
81
|
-
docs: string;
|
82
|
-
dist: string;
|
83
|
-
tmp: string;
|
84
|
-
tmpBundleRelease: string;
|
85
|
-
tempSrc: string;
|
86
|
-
tempSrcDist: string;
|
87
|
-
previewDistApp: string;
|
88
|
-
preview: string;
|
89
|
-
browser: string;
|
90
|
-
websql: string;
|
91
|
-
_browser: string;
|
92
|
-
module: string;
|
93
|
-
backup: string;
|
94
|
-
node_modules: string;
|
95
|
-
client: string;
|
96
|
-
tnp_tests_context: string;
|
97
|
-
tmpPackage: string;
|
98
|
-
tmpScenarios: string;
|
99
|
-
tmpTestsEnvironments: string;
|
100
|
-
testsEnvironments: string;
|
101
|
-
scripts: string;
|
102
|
-
scenarios: string;
|
103
|
-
bower: string;
|
104
|
-
src: string;
|
105
|
-
out: string;
|
106
|
-
app: string;
|
107
|
-
lib: string;
|
108
|
-
libs: string;
|
109
|
-
source: string;
|
110
|
-
custom: string;
|
111
|
-
components: string;
|
112
|
-
assets: string;
|
113
|
-
generated: string;
|
114
|
-
apps: string;
|
115
|
-
shared: string;
|
116
|
-
workspace: string;
|
117
|
-
container: string;
|
118
|
-
bin: string;
|
119
|
-
_bin: string;
|
120
|
-
_vscode: string;
|
121
|
-
project: string;
|
122
|
-
external: string;
|
123
|
-
tmpDist: string;
|
124
|
-
tmpFor(d: ConfigModels.OutFolder): string;
|
125
|
-
targetProjects: {
|
126
|
-
DEFAULT_PATH_GENERATED: string;
|
127
|
-
DEFAULT_PATH_ORIGINS: string;
|
128
|
-
};
|
129
|
-
};
|
130
|
-
tempFolders: {
|
131
|
-
bundle: string;
|
132
|
-
vendor: string;
|
133
|
-
docs: string;
|
134
|
-
dist: string;
|
135
|
-
tmp: string;
|
136
|
-
tmpBundleRelease: string;
|
137
|
-
tempSrc: string;
|
138
|
-
tempSrcDist: string;
|
139
|
-
previewDistApp: string;
|
140
|
-
preview: string;
|
141
|
-
browser: string;
|
142
|
-
websql: string;
|
143
|
-
_browser: string;
|
144
|
-
module: string;
|
145
|
-
backup: string;
|
146
|
-
node_modules: string;
|
147
|
-
client: string;
|
148
|
-
tnp_tests_context: string;
|
149
|
-
tmpPackage: string;
|
150
|
-
tmpScenarios: string;
|
151
|
-
tmpTestsEnvironments: string;
|
152
|
-
testsEnvironments: string;
|
153
|
-
};
|
154
|
-
filesNotAllowedToClean: string[];
|
155
|
-
file: {
|
156
|
-
_bowerrc: string;
|
157
|
-
bower_json: string;
|
158
|
-
controllers_ts: string;
|
159
|
-
entities_ts: string;
|
160
|
-
angular_json: string;
|
161
|
-
autob_actions_js: string;
|
162
|
-
local_config_js: string;
|
163
|
-
build_config_js: string;
|
164
|
-
local_config: string;
|
165
|
-
start_backend_ts: string;
|
166
|
-
package_json: string;
|
167
|
-
result_packages_json: string;
|
168
|
-
package_json5: string;
|
169
|
-
package_json__tnp_json: string;
|
170
|
-
package_json__tnp_json5: string;
|
171
|
-
package_json__devDependencies_json: string;
|
172
|
-
yarn_lock: string;
|
173
|
-
package_lock_json: string;
|
174
|
-
tnpEnvironment_json: string;
|
175
|
-
environment: string;
|
176
|
-
environment_js: string;
|
177
|
-
tmp_transaction_pid_txt: string;
|
178
|
-
manifest_webmanifest: string;
|
179
|
-
public_api_d_ts: string;
|
180
|
-
public_api_ts: string;
|
181
|
-
public_api: string;
|
182
|
-
_babelrc: string;
|
183
|
-
index: string;
|
184
|
-
index_d_ts: string;
|
185
|
-
index_ts: string;
|
186
|
-
index_js: string;
|
187
|
-
index_js_map: string;
|
188
|
-
db_json: string;
|
189
|
-
db_for_tests_json: string;
|
190
|
-
tmpDockerImageId: string;
|
191
|
-
tmp_recent_json: string;
|
192
|
-
tmpIsomorphicPackagesJson: string;
|
193
|
-
tsconfig_json: string;
|
194
|
-
README_MD: string;
|
195
|
-
server_key: string;
|
196
|
-
server_cert: string;
|
197
|
-
server_chain_cert: string;
|
198
|
-
meta_config_md: string;
|
199
|
-
logo_png: string;
|
200
|
-
logo_svg: string;
|
201
|
-
};
|
202
|
-
default: {};
|
203
|
-
SUBERIZED_PREFIX: string;
|
204
|
-
names: {
|
205
|
-
env: {};
|
206
|
-
baseline: string;
|
207
|
-
defaultServer: string;
|
208
|
-
};
|
209
|
-
reservedArgumentsNamesUglify: string[];
|
210
|
-
extensions: {};
|
211
|
-
notFiredevProjects: ConfigModels.LibType[];
|
212
|
-
/**
|
213
|
-
* Build allowed types
|
214
|
-
*/
|
215
|
-
allowedTypes: {};
|
216
|
-
moduleNameAngularLib: any[];
|
217
|
-
moduleNameIsomorphicLib: any[];
|
218
|
-
filesExtensions: {
|
219
|
-
filetemplate: string;
|
220
|
-
styles: any[];
|
221
|
-
};
|
222
|
-
projectTypes: {};
|
223
|
-
localLibs: any[];
|
224
|
-
helpAlias: string[];
|
225
|
-
required: {
|
226
|
-
npm: any[];
|
227
|
-
niceTools: any[];
|
228
|
-
programs: any[];
|
229
|
-
};
|
2
|
+
/**
|
3
|
+
* Dariusz Filipiak
|
4
|
+
* @author darekf77@gmail.com
|
5
|
+
* Recommended config for all isomorphic libs *
|
6
|
+
*/
|
7
|
+
export { CoreHelpers as Helpers } from 'tnp-core/browser';
|
8
|
+
export declare namespace ConfigModels {
|
9
|
+
type EnvironmentName = 'local' | 'static' | 'dev' | 'stage' | 'prod' | 'online' | 'test' | 'qa' | 'custom';
|
10
|
+
type UIFramework = 'bootstrap' | 'material' | 'ionic';
|
11
|
+
type FrameworkVersion = 'v1' | 'v2' | 'v3' | 'v4' | 'v5';
|
12
|
+
type CutableFileExt = 'scss' | 'css' | 'sass' | 'html' | 'ts';
|
13
|
+
type ImageFileExtension = 'jpg' | 'jpeg' | 'png' | 'svg';
|
14
|
+
type FileExtension = 'ts' | 'js' | 'json' | 'html' | ImageFileExtension | 'txt' | CutableFileExt;
|
15
|
+
type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head' | 'jsonp';
|
16
|
+
type ParamType = 'Path' | 'Query' | 'Cookie' | 'Header' | 'Body';
|
17
|
+
type TsUsage = 'import' | 'export';
|
18
|
+
type LibType = 'unknow' | 'isomorphic-lib' | 'angular-lib' | 'electron-client' | 'ionic-lib' | 'angular-client' | 'ionic-client' | 'workspace' | 'container' | 'docker' | 'vscode-ext' | 'chrome-ext' | 'unknow-npm-project' | 'scenario' | 'navi' | 'leaf' | 'game-engine-lib-pixi' | 'game-engine-lib-phaser' | 'game-engine-lib-excalibur' | 'game-engine-lib-babylon';
|
19
|
+
type NewFactoryType = LibType | 'model' | 'single-file-project';
|
20
|
+
type CoreLibCategory = LibType | 'common';
|
21
|
+
interface Position {
|
22
|
+
x: number;
|
23
|
+
y: number;
|
24
|
+
}
|
25
|
+
interface Size {
|
26
|
+
w: number;
|
27
|
+
h: number;
|
28
|
+
}
|
29
|
+
interface GlobalNpmDependency {
|
30
|
+
name: string;
|
31
|
+
installName?: string;
|
32
|
+
version?: string | number;
|
33
|
+
}
|
34
|
+
interface GlobalCommandLineProgramDependency {
|
35
|
+
name: string;
|
36
|
+
website: string;
|
37
|
+
version?: string;
|
38
|
+
}
|
39
|
+
interface GlobalDependencies {
|
40
|
+
npm?: GlobalNpmDependency[];
|
41
|
+
programs?: GlobalCommandLineProgramDependency[];
|
42
|
+
}
|
43
|
+
type FileEvent = 'created' | 'changed' | 'removed' | 'rename';
|
44
|
+
type OutFolder = 'dist' | 'bundle' | 'browser';
|
45
|
+
type FormlyInputType = 'input' | 'switch' | 'datepicker' | 'repeat' | 'group';
|
46
|
+
type DatabaseType = 'better-sqlite3' | 'mysql';
|
47
|
+
}
|
48
|
+
export declare const GlobalLibTypeName: {};
|
49
|
+
export declare const LibTypeArr: ConfigModels.LibType[];
|
50
|
+
export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
|
51
|
+
export declare const config: {
|
52
|
+
packagesThat: {
|
53
|
+
areTrustedForPatchUpdate: any[];
|
54
|
+
};
|
55
|
+
coreProjectVersions: string[];
|
56
|
+
quickFixes: {};
|
57
|
+
packageJsonSplit: any[];
|
58
|
+
regexString: {
|
59
|
+
pathPartStringRegex: string;
|
60
|
+
};
|
61
|
+
placeholders: {
|
62
|
+
forProjectsInEnvironmentFile: string;
|
63
|
+
};
|
64
|
+
array: {
|
65
|
+
isomorphicPackages: string;
|
66
|
+
};
|
67
|
+
defaultFrameworkVersion: ConfigModels.FrameworkVersion;
|
68
|
+
CONST: {};
|
69
|
+
debug: {};
|
70
|
+
frameworkName: "firedev" | "tnp";
|
71
|
+
frameworkNames: {
|
72
|
+
tnp: string;
|
73
|
+
firedev: string;
|
74
|
+
};
|
75
|
+
startPort: number;
|
76
|
+
frameworks: ConfigModels.UIFramework[];
|
77
|
+
allowedEnvironments: ConfigModels.EnvironmentName[];
|
78
|
+
folder: {
|
79
|
+
bundle: string;
|
80
|
+
vendor: string;
|
81
|
+
docs: string;
|
82
|
+
dist: string;
|
83
|
+
tmp: string;
|
84
|
+
tmpBundleRelease: string;
|
85
|
+
tempSrc: string;
|
86
|
+
tempSrcDist: string;
|
87
|
+
previewDistApp: string;
|
88
|
+
preview: string;
|
89
|
+
browser: string;
|
90
|
+
websql: string;
|
91
|
+
_browser: string;
|
92
|
+
module: string;
|
93
|
+
backup: string;
|
94
|
+
node_modules: string;
|
95
|
+
client: string;
|
96
|
+
tnp_tests_context: string;
|
97
|
+
tmpPackage: string;
|
98
|
+
tmpScenarios: string;
|
99
|
+
tmpTestsEnvironments: string;
|
100
|
+
testsEnvironments: string;
|
101
|
+
scripts: string;
|
102
|
+
scenarios: string;
|
103
|
+
bower: string;
|
104
|
+
src: string;
|
105
|
+
out: string;
|
106
|
+
app: string;
|
107
|
+
lib: string;
|
108
|
+
libs: string;
|
109
|
+
source: string;
|
110
|
+
custom: string;
|
111
|
+
components: string;
|
112
|
+
assets: string;
|
113
|
+
generated: string;
|
114
|
+
apps: string;
|
115
|
+
shared: string;
|
116
|
+
workspace: string;
|
117
|
+
container: string;
|
118
|
+
bin: string;
|
119
|
+
_bin: string;
|
120
|
+
_vscode: string;
|
121
|
+
project: string;
|
122
|
+
external: string;
|
123
|
+
tmpDist: string;
|
124
|
+
tmpFor(d: ConfigModels.OutFolder): string;
|
125
|
+
targetProjects: {
|
126
|
+
DEFAULT_PATH_GENERATED: string;
|
127
|
+
DEFAULT_PATH_ORIGINS: string;
|
128
|
+
};
|
129
|
+
};
|
130
|
+
tempFolders: {
|
131
|
+
bundle: string;
|
132
|
+
vendor: string;
|
133
|
+
docs: string;
|
134
|
+
dist: string;
|
135
|
+
tmp: string;
|
136
|
+
tmpBundleRelease: string;
|
137
|
+
tempSrc: string;
|
138
|
+
tempSrcDist: string;
|
139
|
+
previewDistApp: string;
|
140
|
+
preview: string;
|
141
|
+
browser: string;
|
142
|
+
websql: string;
|
143
|
+
_browser: string;
|
144
|
+
module: string;
|
145
|
+
backup: string;
|
146
|
+
node_modules: string;
|
147
|
+
client: string;
|
148
|
+
tnp_tests_context: string;
|
149
|
+
tmpPackage: string;
|
150
|
+
tmpScenarios: string;
|
151
|
+
tmpTestsEnvironments: string;
|
152
|
+
testsEnvironments: string;
|
153
|
+
};
|
154
|
+
filesNotAllowedToClean: string[];
|
155
|
+
file: {
|
156
|
+
_bowerrc: string;
|
157
|
+
bower_json: string;
|
158
|
+
controllers_ts: string;
|
159
|
+
entities_ts: string;
|
160
|
+
angular_json: string;
|
161
|
+
autob_actions_js: string;
|
162
|
+
local_config_js: string;
|
163
|
+
build_config_js: string;
|
164
|
+
local_config: string;
|
165
|
+
start_backend_ts: string;
|
166
|
+
package_json: string;
|
167
|
+
result_packages_json: string;
|
168
|
+
package_json5: string;
|
169
|
+
package_json__tnp_json: string;
|
170
|
+
package_json__tnp_json5: string;
|
171
|
+
package_json__devDependencies_json: string;
|
172
|
+
yarn_lock: string;
|
173
|
+
package_lock_json: string;
|
174
|
+
tnpEnvironment_json: string;
|
175
|
+
environment: string;
|
176
|
+
environment_js: string;
|
177
|
+
tmp_transaction_pid_txt: string;
|
178
|
+
manifest_webmanifest: string;
|
179
|
+
public_api_d_ts: string;
|
180
|
+
public_api_ts: string;
|
181
|
+
public_api: string;
|
182
|
+
_babelrc: string;
|
183
|
+
index: string;
|
184
|
+
index_d_ts: string;
|
185
|
+
index_ts: string;
|
186
|
+
index_js: string;
|
187
|
+
index_js_map: string;
|
188
|
+
db_json: string;
|
189
|
+
db_for_tests_json: string;
|
190
|
+
tmpDockerImageId: string;
|
191
|
+
tmp_recent_json: string;
|
192
|
+
tmpIsomorphicPackagesJson: string;
|
193
|
+
tsconfig_json: string;
|
194
|
+
README_MD: string;
|
195
|
+
server_key: string;
|
196
|
+
server_cert: string;
|
197
|
+
server_chain_cert: string;
|
198
|
+
meta_config_md: string;
|
199
|
+
logo_png: string;
|
200
|
+
logo_svg: string;
|
201
|
+
};
|
202
|
+
default: {};
|
203
|
+
SUBERIZED_PREFIX: string;
|
204
|
+
names: {
|
205
|
+
env: {};
|
206
|
+
baseline: string;
|
207
|
+
defaultServer: string;
|
208
|
+
};
|
209
|
+
reservedArgumentsNamesUglify: string[];
|
210
|
+
extensions: {};
|
211
|
+
notFiredevProjects: ConfigModels.LibType[];
|
212
|
+
/**
|
213
|
+
* Build allowed types
|
214
|
+
*/
|
215
|
+
allowedTypes: {};
|
216
|
+
moduleNameAngularLib: any[];
|
217
|
+
moduleNameIsomorphicLib: any[];
|
218
|
+
filesExtensions: {
|
219
|
+
filetemplate: string;
|
220
|
+
styles: any[];
|
221
|
+
};
|
222
|
+
projectTypes: {};
|
223
|
+
localLibs: any[];
|
224
|
+
helpAlias: string[];
|
225
|
+
required: {
|
226
|
+
npm: any[];
|
227
|
+
niceTools: any[];
|
228
|
+
programs: any[];
|
229
|
+
};
|
230
230
|
};
|
package/client/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"dependencies": {
|
3
|
-
"tnp-core": "~13.2.
|
3
|
+
"tnp-core": "~13.2.14"
|
4
4
|
},
|
5
5
|
"devDependencies": {
|
6
6
|
"@angular-devkit/build-angular": "~13.3.9",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
"@ngrx/store-devtools": "~13.0.2",
|
35
35
|
"@ngx-formly/bootstrap": "6.0.0-next.8",
|
36
36
|
"@ngx-formly/core": "6.0.0-next.8",
|
37
|
-
"@ngx-formly/ionic": "6.
|
37
|
+
"@ngx-formly/ionic": "4.6.3",
|
38
38
|
"@ngx-formly/material": "6.0.0-next.8",
|
39
39
|
"@ngx-loading-bar/core": "6.0.2",
|
40
40
|
"@ngx-loading-bar/http-client": "6.0.2",
|
@@ -72,15 +72,14 @@
|
|
72
72
|
"@types/vinyl": "2.0.2",
|
73
73
|
"@types/watch": "1.0.0",
|
74
74
|
"accepts": "1.3.4",
|
75
|
-
"any-project-cli": "~13.1.
|
75
|
+
"any-project-cli": "~13.1.24",
|
76
76
|
"axios": "1.3.5",
|
77
|
-
"background-worker-process": "~13.1.
|
77
|
+
"background-worker-process": "~13.1.41",
|
78
78
|
"base32": "0.0.7",
|
79
79
|
"bcryptjs": "2.4.3",
|
80
80
|
"better-sqlite3": "7.6.2",
|
81
81
|
"body-parser": "1.18.2",
|
82
|
-
"bootstrap": "
|
83
|
-
"bs4-breakpoint": "13.0.33",
|
82
|
+
"bootstrap": "4.6.2",
|
84
83
|
"buffer-shims": "1.0.0",
|
85
84
|
"callsite-record": "4.1.3",
|
86
85
|
"chai": "4.2.0",
|
@@ -101,7 +100,6 @@
|
|
101
100
|
"dateformat": "3.0.3",
|
102
101
|
"detect-mocha": "0.1.0",
|
103
102
|
"diff": "3.2.0",
|
104
|
-
"edit-table": "13.1.0",
|
105
103
|
"element-resize-detector": "1.1.15",
|
106
104
|
"enquirer": "2.3.0",
|
107
105
|
"enum-values": "1.2.1",
|
@@ -117,12 +115,12 @@
|
|
117
115
|
"file-loader": "1.1.5",
|
118
116
|
"file-saver": "2.0.5",
|
119
117
|
"firedev": "^13",
|
120
|
-
"firedev-crud": "~13.1.
|
121
|
-
"firedev-crud-deamon": "~13.1.
|
122
|
-
"firedev-ports": "~13.1.
|
123
|
-
"firedev-storage": "~13.1.
|
124
|
-
"firedev-typeorm": "~13.1.
|
125
|
-
"firedev-ui": "~13.1.
|
118
|
+
"firedev-crud": "~13.1.46",
|
119
|
+
"firedev-crud-deamon": "~13.1.36",
|
120
|
+
"firedev-ports": "~13.1.40",
|
121
|
+
"firedev-storage": "~13.1.29",
|
122
|
+
"firedev-typeorm": "~13.1.24",
|
123
|
+
"firedev-ui": "~13.1.19",
|
126
124
|
"fkill": "6.1.0",
|
127
125
|
"font-awesome": "4.7.0",
|
128
126
|
"form-data": "4.0.0",
|
@@ -134,17 +132,18 @@
|
|
134
132
|
"http-proxy": "1.16.2",
|
135
133
|
"http-proxy-middleware": "0.19.1",
|
136
134
|
"http-server": "0.11.1",
|
137
|
-
"
|
135
|
+
"immutable": "4.3.0",
|
136
|
+
"incremental-compiler": "~13.1.22",
|
138
137
|
"inquirer": "7.3.3",
|
139
138
|
"inquirer-autocomplete-prompt": "1.3.0",
|
140
139
|
"is-elevated": "3.0.0",
|
141
|
-
"isomorphic-region-loader": "~13.1.
|
140
|
+
"isomorphic-region-loader": "~13.1.34",
|
142
141
|
"istanbul-instrumenter-loader": "2.0.0",
|
143
142
|
"jasmine-core": "4.0.0",
|
144
143
|
"jscodeshift": "0.6.3",
|
145
144
|
"json-stringify-safe": "5.0.1",
|
146
|
-
"json10": "~13.1.
|
147
|
-
"json10-writer": "~13.1.
|
145
|
+
"json10": "~13.1.41",
|
146
|
+
"json10-writer": "~13.1.37",
|
148
147
|
"json5": "2.1.3",
|
149
148
|
"json5-writer": "0.2.0",
|
150
149
|
"jszip": "3.10.1",
|
@@ -158,25 +157,25 @@
|
|
158
157
|
"localforage": "1.10.0",
|
159
158
|
"lockfile": "1.0.4",
|
160
159
|
"lodash": "4.17.4",
|
161
|
-
"lodash-walk-object": "~13.1.
|
160
|
+
"lodash-walk-object": "~13.1.41",
|
162
161
|
"lowdb": "1.0.0",
|
163
|
-
"magic-renamer": "~13.1.
|
162
|
+
"magic-renamer": "~13.1.38",
|
164
163
|
"material-design-icons": "3.0.1",
|
165
164
|
"method-override": "2.3.10",
|
166
165
|
"minimist": "1.2.0",
|
167
166
|
"mkdirp": "0.5.1",
|
168
167
|
"mocha": "5.2.0",
|
169
168
|
"moment": "2.22.2",
|
170
|
-
"morphi": "~13.2.
|
169
|
+
"morphi": "~13.2.4",
|
171
170
|
"ng-packagr": "13.0.0",
|
172
171
|
"ng-talkback": "~13.1.19",
|
173
172
|
"ng2-file-upload": "1.3.0",
|
174
|
-
"ng2-logger": "~13.1.
|
175
|
-
"ng2-rest": "~13.2.
|
173
|
+
"ng2-logger": "~13.1.20",
|
174
|
+
"ng2-rest": "~13.2.4",
|
176
175
|
"ng4-icons": "~13.1.21",
|
177
176
|
"ng4-modal": "~13.1.23",
|
178
177
|
"ngx-ace-wrapper": "12",
|
179
|
-
"ngx-bootstrap": "
|
178
|
+
"ngx-bootstrap": "2.0.2",
|
180
179
|
"ngx-editor": "12.2.1",
|
181
180
|
"ngx-highlightjs": "6.1.3",
|
182
181
|
"ngx-moment": "6.0.2",
|
@@ -221,11 +220,11 @@
|
|
221
220
|
"sudo-block": "3.0.0",
|
222
221
|
"systeminformation": "3.45.7",
|
223
222
|
"task.js": "0.1.5",
|
224
|
-
"tnp-cli": "~13.1.
|
225
|
-
"tnp-config": "~13.1.
|
226
|
-
"tnp-db": "~13.1.
|
227
|
-
"tnp-helpers": "~13.1.
|
228
|
-
"tnp-models": "~13.1.
|
223
|
+
"tnp-cli": "~13.1.55",
|
224
|
+
"tnp-config": "~13.1.71",
|
225
|
+
"tnp-db": "~13.1.18",
|
226
|
+
"tnp-helpers": "~13.1.29",
|
227
|
+
"tnp-models": "~13.1.21",
|
229
228
|
"tnp-ui": "~13.1.27",
|
230
229
|
"ts-debug": "1.3.0",
|
231
230
|
"ts-loader": "2.3.1",
|
@@ -233,7 +232,7 @@
|
|
233
232
|
"tslib": "~2.3.0",
|
234
233
|
"typeorm": "~0.3.10",
|
235
234
|
"typescript": "~4.6.2",
|
236
|
-
"typescript-class-helpers": "~13.2.
|
235
|
+
"typescript-class-helpers": "~13.2.6",
|
237
236
|
"typescript-formatter": "~7.2.2",
|
238
237
|
"underscore": "1.9.1",
|
239
238
|
"uuid": "8.3.2",
|
@@ -247,6 +246,6 @@
|
|
247
246
|
"private": false,
|
248
247
|
"main": "index.js",
|
249
248
|
"name": "tnp-config",
|
250
|
-
"version": "13.1.
|
251
|
-
"lastBuildTagHash": "
|
249
|
+
"version": "13.1.72",
|
250
|
+
"lastBuildTagHash": "85a3016bb203917527f053fa5a3919bd239711ca"
|
252
251
|
}
|
package/client/tnp-config.d.ts
CHANGED
package/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from './lib';
|
1
|
+
export * from './lib';
|