tnp-config 13.1.75 → 13.1.76

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.
Files changed (40) hide show
  1. package/README.md +17 -17
  2. package/assets/shared/shared_folder_info.txt +1 -1
  3. package/browser/README.md +24 -24
  4. package/browser/esm2020/lib/config.mjs +771 -771
  5. package/browser/esm2020/lib/index.mjs +3 -3
  6. package/browser/esm2020/public-api.mjs +1 -1
  7. package/browser/esm2020/tnp-config.mjs +4 -4
  8. package/browser/fesm2015/tnp-config.mjs +690 -690
  9. package/browser/fesm2020/tnp-config.mjs +764 -764
  10. package/browser/lib/config.d.ts +227 -227
  11. package/browser/tnp-config.d.ts +4 -4
  12. package/client/README.md +24 -24
  13. package/client/esm2020/lib/config.mjs +771 -771
  14. package/client/esm2020/lib/index.mjs +3 -3
  15. package/client/esm2020/public-api.mjs +1 -1
  16. package/client/esm2020/tnp-config.mjs +4 -4
  17. package/client/fesm2015/tnp-config.mjs +690 -690
  18. package/client/fesm2020/tnp-config.mjs +764 -764
  19. package/client/lib/config.d.ts +227 -227
  20. package/client/package.json +33 -31
  21. package/client/tnp-config.d.ts +4 -4
  22. package/index.d.ts +1 -1
  23. package/index.js.map +1 -1
  24. package/lib/config.d.ts +439 -439
  25. package/lib/config.js.map +1 -1
  26. package/lib/index.d.ts +1 -1
  27. package/lib/index.js.map +1 -1
  28. package/package.json +3 -3
  29. package/package.json_devDependencies.json +218 -218
  30. package/package.json_tnp.json5 +36 -36
  31. package/tmp-environment.json +37 -35
  32. package/websql/README.md +24 -24
  33. package/websql/esm2020/lib/config.mjs +771 -771
  34. package/websql/esm2020/lib/index.mjs +3 -3
  35. package/websql/esm2020/public-api.mjs +1 -1
  36. package/websql/esm2020/tnp-config.mjs +4 -4
  37. package/websql/fesm2015/tnp-config.mjs +690 -690
  38. package/websql/fesm2020/tnp-config.mjs +764 -764
  39. package/websql/lib/config.d.ts +227 -227
  40. package/websql/tnp-config.d.ts +4 -4
@@ -1,229 +1,229 @@
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 DatabaseType = 'better-sqlite3' | 'mysql';
46
- }
47
- export declare const GlobalLibTypeName: {};
48
- export declare const LibTypeArr: ConfigModels.LibType[];
49
- export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
50
- export declare const config: {
51
- packagesThat: {
52
- areTrustedForPatchUpdate: any[];
53
- };
54
- coreProjectVersions: string[];
55
- quickFixes: {};
56
- packageJsonSplit: any[];
57
- regexString: {
58
- pathPartStringRegex: string;
59
- };
60
- placeholders: {
61
- forProjectsInEnvironmentFile: string;
62
- };
63
- array: {
64
- isomorphicPackages: string;
65
- };
66
- defaultFrameworkVersion: ConfigModels.FrameworkVersion;
67
- CONST: {};
68
- debug: {};
69
- frameworkName: "firedev" | "tnp";
70
- frameworkNames: {
71
- tnp: string;
72
- firedev: string;
73
- };
74
- startPort: number;
75
- frameworks: ConfigModels.UIFramework[];
76
- allowedEnvironments: ConfigModels.EnvironmentName[];
77
- folder: {
78
- bundle: string;
79
- vendor: string;
80
- docs: string;
81
- dist: string;
82
- tmp: string;
83
- tmpBundleRelease: string;
84
- tempSrc: string;
85
- tempSrcDist: string;
86
- previewDistApp: string;
87
- preview: string;
88
- browser: string;
89
- websql: string;
90
- _browser: string;
91
- module: string;
92
- backup: string;
93
- node_modules: string;
94
- client: string;
95
- tnp_tests_context: string;
96
- tmpPackage: string;
97
- tmpScenarios: string;
98
- tmpTestsEnvironments: string;
99
- testsEnvironments: string;
100
- scripts: string;
101
- scenarios: string;
102
- bower: string;
103
- src: string;
104
- out: string;
105
- app: string;
106
- lib: string;
107
- libs: string;
108
- source: string;
109
- custom: string;
110
- components: string;
111
- assets: string;
112
- generated: string;
113
- apps: string;
114
- shared: string;
115
- workspace: string;
116
- container: string;
117
- bin: string;
118
- _bin: string;
119
- _vscode: string;
120
- project: string;
121
- external: string;
122
- tmpDist: string;
123
- tmpFor(d: ConfigModels.OutFolder): string;
124
- targetProjects: {
125
- DEFAULT_PATH_GENERATED: string;
126
- DEFAULT_PATH_ORIGINS: string;
127
- };
128
- };
129
- tempFolders: {
130
- bundle: string;
131
- vendor: string;
132
- docs: string;
133
- dist: string;
134
- tmp: string;
135
- tmpBundleRelease: string;
136
- tempSrc: string;
137
- tempSrcDist: string;
138
- previewDistApp: string;
139
- preview: string;
140
- browser: string;
141
- websql: string;
142
- _browser: string;
143
- module: string;
144
- backup: string;
145
- node_modules: string;
146
- client: string;
147
- tnp_tests_context: string;
148
- tmpPackage: string;
149
- tmpScenarios: string;
150
- tmpTestsEnvironments: string;
151
- testsEnvironments: string;
152
- };
153
- filesNotAllowedToClean: string[];
154
- file: {
155
- _bowerrc: string;
156
- bower_json: string;
157
- controllers_ts: string;
158
- entities_ts: string;
159
- angular_json: string;
160
- autob_actions_js: string;
161
- local_config_js: string;
162
- build_config_js: string;
163
- local_config: string;
164
- start_backend_ts: string;
165
- package_json: string;
166
- result_packages_json: string;
167
- package_json5: string;
168
- package_json__tnp_json: string;
169
- package_json__tnp_json5: string;
170
- package_json__devDependencies_json: string;
171
- yarn_lock: string;
172
- package_lock_json: string;
173
- tnpEnvironment_json: string;
174
- environment: string;
175
- environment_js: string;
176
- tmp_transaction_pid_txt: string;
177
- manifest_webmanifest: string;
178
- public_api_d_ts: string;
179
- public_api_ts: string;
180
- public_api: string;
181
- _babelrc: string;
182
- index: string;
183
- index_d_ts: string;
184
- index_ts: string;
185
- index_js: string;
186
- index_js_map: string;
187
- db_json: string;
188
- db_for_tests_json: string;
189
- tmpDockerImageId: string;
190
- tmp_recent_json: string;
191
- tmpIsomorphicPackagesJson: string;
192
- tsconfig_json: string;
193
- README_MD: string;
194
- server_key: string;
195
- server_cert: string;
196
- server_chain_cert: string;
197
- meta_config_md: string;
198
- logo_png: string;
199
- logo_svg: string;
200
- };
201
- default: {};
202
- SUBERIZED_PREFIX: string;
203
- names: {
204
- env: {};
205
- baseline: string;
206
- defaultServer: string;
207
- };
208
- reservedArgumentsNamesUglify: string[];
209
- extensions: {};
210
- notFiredevProjects: ConfigModels.LibType[];
211
- /**
212
- * Build allowed types
213
- */
214
- allowedTypes: {};
215
- moduleNameAngularLib: any[];
216
- moduleNameIsomorphicLib: any[];
217
- filesExtensions: {
218
- filetemplate: string;
219
- styles: any[];
220
- };
221
- projectTypes: {};
222
- localLibs: any[];
223
- helpAlias: string[];
224
- required: {
225
- npm: any[];
226
- niceTools: any[];
227
- programs: any[];
228
- };
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 DatabaseType = 'better-sqlite3' | 'mysql';
46
+ }
47
+ export declare const GlobalLibTypeName: {};
48
+ export declare const LibTypeArr: ConfigModels.LibType[];
49
+ export declare const CoreLibCategoryArr: ConfigModels.CoreLibCategory[];
50
+ export declare const config: {
51
+ packagesThat: {
52
+ areTrustedForPatchUpdate: any[];
53
+ };
54
+ coreProjectVersions: string[];
55
+ quickFixes: {};
56
+ packageJsonSplit: any[];
57
+ regexString: {
58
+ pathPartStringRegex: string;
59
+ };
60
+ placeholders: {
61
+ forProjectsInEnvironmentFile: string;
62
+ };
63
+ array: {
64
+ isomorphicPackages: string;
65
+ };
66
+ defaultFrameworkVersion: ConfigModels.FrameworkVersion;
67
+ CONST: {};
68
+ debug: {};
69
+ frameworkName: "firedev" | "tnp";
70
+ frameworkNames: {
71
+ tnp: string;
72
+ firedev: string;
73
+ };
74
+ startPort: number;
75
+ frameworks: ConfigModels.UIFramework[];
76
+ allowedEnvironments: ConfigModels.EnvironmentName[];
77
+ folder: {
78
+ bundle: string;
79
+ vendor: string;
80
+ docs: string;
81
+ dist: string;
82
+ tmp: string;
83
+ tmpBundleRelease: string;
84
+ tempSrc: string;
85
+ tempSrcDist: string;
86
+ previewDistApp: string;
87
+ preview: string;
88
+ browser: string;
89
+ websql: string;
90
+ _browser: string;
91
+ module: string;
92
+ backup: string;
93
+ node_modules: string;
94
+ client: string;
95
+ tnp_tests_context: string;
96
+ tmpPackage: string;
97
+ tmpScenarios: string;
98
+ tmpTestsEnvironments: string;
99
+ testsEnvironments: string;
100
+ scripts: string;
101
+ scenarios: string;
102
+ bower: string;
103
+ src: string;
104
+ out: string;
105
+ app: string;
106
+ lib: string;
107
+ libs: string;
108
+ source: string;
109
+ custom: string;
110
+ components: string;
111
+ assets: string;
112
+ generated: string;
113
+ apps: string;
114
+ shared: string;
115
+ workspace: string;
116
+ container: string;
117
+ bin: string;
118
+ _bin: string;
119
+ _vscode: string;
120
+ project: string;
121
+ external: string;
122
+ tmpDist: string;
123
+ tmpFor(d: ConfigModels.OutFolder): string;
124
+ targetProjects: {
125
+ DEFAULT_PATH_GENERATED: string;
126
+ DEFAULT_PATH_ORIGINS: string;
127
+ };
128
+ };
129
+ tempFolders: {
130
+ bundle: string;
131
+ vendor: string;
132
+ docs: string;
133
+ dist: string;
134
+ tmp: string;
135
+ tmpBundleRelease: string;
136
+ tempSrc: string;
137
+ tempSrcDist: string;
138
+ previewDistApp: string;
139
+ preview: string;
140
+ browser: string;
141
+ websql: string;
142
+ _browser: string;
143
+ module: string;
144
+ backup: string;
145
+ node_modules: string;
146
+ client: string;
147
+ tnp_tests_context: string;
148
+ tmpPackage: string;
149
+ tmpScenarios: string;
150
+ tmpTestsEnvironments: string;
151
+ testsEnvironments: string;
152
+ };
153
+ filesNotAllowedToClean: string[];
154
+ file: {
155
+ _bowerrc: string;
156
+ bower_json: string;
157
+ controllers_ts: string;
158
+ entities_ts: string;
159
+ angular_json: string;
160
+ autob_actions_js: string;
161
+ local_config_js: string;
162
+ build_config_js: string;
163
+ local_config: string;
164
+ start_backend_ts: string;
165
+ package_json: string;
166
+ result_packages_json: string;
167
+ package_json5: string;
168
+ package_json__tnp_json: string;
169
+ package_json__tnp_json5: string;
170
+ package_json__devDependencies_json: string;
171
+ yarn_lock: string;
172
+ package_lock_json: string;
173
+ tnpEnvironment_json: string;
174
+ environment: string;
175
+ environment_js: string;
176
+ tmp_transaction_pid_txt: string;
177
+ manifest_webmanifest: string;
178
+ public_api_d_ts: string;
179
+ public_api_ts: string;
180
+ public_api: string;
181
+ _babelrc: string;
182
+ index: string;
183
+ index_d_ts: string;
184
+ index_ts: string;
185
+ index_js: string;
186
+ index_js_map: string;
187
+ db_json: string;
188
+ db_for_tests_json: string;
189
+ tmpDockerImageId: string;
190
+ tmp_recent_json: string;
191
+ tmpIsomorphicPackagesJson: string;
192
+ tsconfig_json: string;
193
+ README_MD: string;
194
+ server_key: string;
195
+ server_cert: string;
196
+ server_chain_cert: string;
197
+ meta_config_md: string;
198
+ logo_png: string;
199
+ logo_svg: string;
200
+ };
201
+ default: {};
202
+ SUBERIZED_PREFIX: string;
203
+ names: {
204
+ env: {};
205
+ baseline: string;
206
+ defaultServer: string;
207
+ };
208
+ reservedArgumentsNamesUglify: string[];
209
+ extensions: {};
210
+ notFiredevProjects: ConfigModels.LibType[];
211
+ /**
212
+ * Build allowed types
213
+ */
214
+ allowedTypes: {};
215
+ moduleNameAngularLib: any[];
216
+ moduleNameIsomorphicLib: any[];
217
+ filesExtensions: {
218
+ filetemplate: string;
219
+ styles: any[];
220
+ };
221
+ projectTypes: {};
222
+ localLibs: any[];
223
+ helpAlias: string[];
224
+ required: {
225
+ npm: any[];
226
+ niceTools: any[];
227
+ programs: any[];
228
+ };
229
229
  };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "tnp-core": "~13.2.19"
3
+ "tnp-core": "~13.2.20"
4
4
  },
5
5
  "devDependencies": {
6
6
  "@angular-devkit/build-angular": "~13.3.9",
@@ -13,6 +13,7 @@
13
13
  "@angular/compiler": "~13.3.0",
14
14
  "@angular/compiler-cli": "~13.3.0",
15
15
  "@angular/core": "~13.3.0",
16
+ "@angular/elements": "~13.3.0",
16
17
  "@angular/flex-layout": "~13.0.0-beta.38",
17
18
  "@angular/forms": "~13.3.0",
18
19
  "@angular/material": "~13.3.9",
@@ -73,9 +74,9 @@
73
74
  "@types/watch": "1.0.0",
74
75
  "accepts": "1.3.4",
75
76
  "angular-material-css-vars": "5.0.0",
76
- "any-project-cli": "~13.1.26",
77
+ "any-project-cli": "~13.1.27",
77
78
  "axios": "1.3.5",
78
- "background-worker-process": "~13.1.43",
79
+ "background-worker-process": "~13.1.44",
79
80
  "base32": "0.0.7",
80
81
  "bcryptjs": "2.4.3",
81
82
  "better-sqlite3": "7.6.2",
@@ -96,7 +97,7 @@
96
97
  "concurrently": "3.5.1",
97
98
  "content-type": "1.0.4",
98
99
  "cookie-parser": "1.4.3",
99
- "copy-paste": "1.3.0",
100
+ "copy-paste": "1.5.3",
100
101
  "cors": "2.8.4",
101
102
  "cpr": "3.0.1",
102
103
  "cross-spawn": "7.0.3",
@@ -117,12 +118,12 @@
117
118
  "file-loader": "1.1.5",
118
119
  "file-saver": "2.0.5",
119
120
  "firedev": "^13",
120
- "firedev-crud": "~13.1.48",
121
- "firedev-crud-deamon": "~13.1.38",
122
- "firedev-ports": "~13.1.42",
123
- "firedev-storage": "~13.2.35",
124
- "firedev-typeorm": "~13.1.30",
125
- "firedev-ui": "~13.2.7",
121
+ "firedev-crud": "~13.1.49",
122
+ "firedev-crud-deamon": "~13.1.39",
123
+ "firedev-ports": "~13.1.44",
124
+ "firedev-storage": "~13.2.36",
125
+ "firedev-typeorm": "~13.1.31",
126
+ "firedev-ui": "~13.2.9",
126
127
  "fkill": "6.1.0",
127
128
  "font-awesome": "4.7.0",
128
129
  "form-data": "4.0.0",
@@ -136,18 +137,18 @@
136
137
  "http-proxy-middleware": "0.19.1",
137
138
  "http-server": "0.11.1",
138
139
  "immutable": "4.3.0",
139
- "incremental-compiler": "~13.1.24",
140
+ "incremental-compiler": "~13.1.25",
140
141
  "inquirer": "7.3.3",
141
142
  "inquirer-autocomplete-prompt": "1.3.0",
142
143
  "is-elevated": "3.0.0",
143
- "isomorphic-region-loader": "~13.1.36",
144
+ "isomorphic-region-loader": "~13.1.37",
144
145
  "istanbul-instrumenter-loader": "2.0.0",
145
146
  "jasmine-core": "4.0.0",
146
147
  "jscodeshift": "0.6.3",
147
148
  "json-stringify-safe": "5.0.1",
148
- "json10": "~13.1.43",
149
- "json10-writer": "~13.1.39",
150
- "json5": "2.1.3",
149
+ "json10": "~13.1.44",
150
+ "json10-writer": "~13.1.40",
151
+ "json5": "2.2.1",
151
152
  "json5-writer": "0.2.0",
152
153
  "jszip": "3.10.1",
153
154
  "karma": "6.3.0",
@@ -159,22 +160,22 @@
159
160
  "lnk": "1.0.1",
160
161
  "localforage": "1.10.0",
161
162
  "lockfile": "1.0.4",
162
- "lodash": "4.17.4",
163
- "lodash-walk-object": "~13.1.43",
163
+ "lodash": "4.17.20",
164
+ "lodash-walk-object": "~13.1.44",
164
165
  "lowdb": "1.0.0",
165
- "magic-renamer": "~13.1.40",
166
+ "magic-renamer": "~13.1.41",
166
167
  "material-design-icons": "3.0.1",
167
168
  "method-override": "2.3.10",
168
169
  "minimist": "1.2.0",
169
170
  "mkdirp": "0.5.1",
170
171
  "mocha": "5.2.0",
171
- "moment": "2.22.2",
172
- "morphi": "~13.2.10",
172
+ "moment": "2.29.3",
173
+ "morphi": "~13.2.11",
173
174
  "ng-in-viewport": "13.0.1",
174
175
  "ng-packagr": "13.0.0",
175
176
  "ng-talkback": "~13.1.19",
176
- "ng2-logger": "~13.1.23",
177
- "ng2-rest": "~13.2.7",
177
+ "ng2-logger": "~13.1.24",
178
+ "ng2-rest": "~13.2.8",
178
179
  "ngx-ace-wrapper": "12",
179
180
  "ngx-editor": "12.2.1",
180
181
  "ngx-highlightjs": "6.1.3",
@@ -215,24 +216,25 @@
215
216
  "socket.io": "2.4.1",
216
217
  "sort-package-json": "1.11.0",
217
218
  "sql.js": "1.8.0",
218
- "static-columns": "~13.3.6",
219
+ "static-columns": "~13.3.8",
219
220
  "string-similarity": "4.0.2",
220
221
  "sudo-block": "3.0.0",
221
222
  "systeminformation": "3.45.7",
222
223
  "task.js": "0.1.5",
223
224
  "threads": "1.7.0",
224
- "tnp-cli": "~13.1.58",
225
- "tnp-config": "~13.1.74",
226
- "tnp-db": "~13.1.20",
227
- "tnp-helpers": "~13.1.37",
228
- "tnp-models": "~13.1.26",
225
+ "tnp-cli": "~13.1.59",
226
+ "tnp-config": "~13.1.75",
227
+ "tnp-db": "~13.1.21",
228
+ "tnp-helpers": "~13.1.38",
229
+ "tnp-models": "~13.1.27",
229
230
  "ts-debug": "1.3.0",
230
231
  "ts-loader": "2.3.1",
231
232
  "ts-node": "10.7.0",
232
233
  "tslib": "~2.3.0",
234
+ "turndown": "7.1.2",
233
235
  "typeorm": "~0.3.10",
234
236
  "typescript": "~4.6.2",
235
- "typescript-class-helpers": "~13.2.11",
237
+ "typescript-class-helpers": "~13.2.12",
236
238
  "typescript-formatter": "~7.2.2",
237
239
  "underscore": "1.9.1",
238
240
  "uuid": "8.3.2",
@@ -247,6 +249,6 @@
247
249
  "private": false,
248
250
  "main": "index.js",
249
251
  "name": "tnp-config",
250
- "version": "13.1.75",
251
- "lastBuildTagHash": "d30d7e58cd6904783e9d208799fc653b1bafac58"
252
+ "version": "13.1.76",
253
+ "lastBuildTagHash": "3e46448f82b81cd706a8c2d478c20e3c5f93ecf4"
252
254
  }
@@ -1,6 +1,6 @@
1
1
  // @ts-nocheck
2
- /**
3
- * Generated bundle index. Do not edit.
4
- */
5
- /// <amd-module name="tnp-config" />
2
+ /**
3
+ * Generated bundle index. Do not edit.
4
+ */
5
+ /// <amd-module name="tnp-config" />
6
6
  export * from './public-api';
package/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './lib';
1
+ export * from './lib';
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["C:/Users/darek/projects/npm/firedev-io/tnp-config/tmp-bundle-release/bundle/project/tnp-config/src/index.ts"],"names":[],"mappings":";;;AAAA,gDAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["./src/index.ts"],"names":[],"mappings":";;;AAAA,gDAAsB"}