tnp-config 13.1.47 → 13.1.49

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/lib/config.d.ts CHANGED
@@ -107,28 +107,14 @@ export declare const config: {
107
107
  ba: string;
108
108
  baw: string;
109
109
  bw: string;
110
- bap: string;
111
- bapw: string;
112
110
  bda: string;
113
- bdaw: string;
114
- badpw: string;
115
- badp: string;
111
+ bdap: string;
116
112
  bd: string;
117
113
  bdw: string;
118
- bdp: string;
119
- bdpw: string;
120
114
  bba: string;
121
- bbaw: string;
115
+ bbap: string;
122
116
  bb: string;
123
117
  bbw: string;
124
- bbp: string;
125
- bbpw: string;
126
- sb: string;
127
- sbp: string;
128
- sbd: string;
129
- sbl: string;
130
- sba: string;
131
- cb: string;
132
118
  };
133
119
  argsGlobalFlags: string[];
134
120
  argsReplacements: {
@@ -171,28 +157,14 @@ export declare const config: {
171
157
  ba: string;
172
158
  baw: string;
173
159
  bw: string;
174
- bap: string;
175
- bapw: string;
176
160
  bda: string;
177
- bdaw: string;
178
- badpw: string;
179
- badp: string;
161
+ bdap: string;
180
162
  bd: string;
181
163
  bdw: string;
182
- bdp: string;
183
- bdpw: string;
184
164
  bba: string;
185
- bbaw: string;
165
+ bbap: string;
186
166
  bb: string;
187
167
  bbw: string;
188
- bbp: string;
189
- bbpw: string;
190
- sb: string;
191
- sbp: string;
192
- sbd: string;
193
- sbl: string;
194
- sba: string;
195
- cb: string;
196
168
  };
197
169
  coreBuildFrameworkNames: string[];
198
170
  ports: {
package/lib/config.js CHANGED
@@ -123,7 +123,7 @@ var dirnameForTnp;
123
123
  //#region @backend
124
124
  dirnameForTnp = (0, tnp_core_1.crossPlatformPath)(tnp_core_1.path.resolve(__dirname, '..'));
125
125
  //#endregion
126
- var firedevProjectsRelative = "../firedev-projects";
126
+ var firedevProjectsRelative = "../morphi/projects";
127
127
  //#region @backend
128
128
  if (process.platform === 'win32' && dirnameForTnp.endsWith('dist')) { // TODO QUICK_FIX for windows
129
129
  dirnameForTnp = (0, tnp_core_1.crossPlatformPath)(tnp_core_1.path.dirname(dirnameForTnp));
@@ -216,30 +216,38 @@ var argsReplacementsBuild = {
216
216
  'ba': 'build:app',
217
217
  'baw': 'build:app:watch',
218
218
  'bw': 'build:watch',
219
- 'bap': 'build:app:prod',
220
- 'bapw': 'build:app:prod:watch',
219
+ // buid dist watch with automatic container/previewProjects popuilation
220
+ // 'bap': 'build:app:prod',
221
+ // 'bapw': 'build:app:prod:watch',
221
222
  // (dist)app build for normal development - watch is ng serve
222
223
  'bda': 'build:dist:app',
223
- 'bdaw': 'build:dist:app:watch',
224
+ 'bdap': 'build:dist:app:prod',
225
+ // 'bdaw': 'build:dist:app:watch',
224
226
  // (dist)app build for normal development (PRODUCTION MINIFIED CODE)
225
- 'badpw': 'build:app:dist:prod:watch',
226
- 'badp': 'build:app:dist:prod',
227
+ // 'badpw': 'build:app:dist:prod:watch',
228
+ // 'badp': 'build:app:dist:prod',
227
229
  // (dist)lib build - watch is ng build
228
- 'bd': 'build:dist', 'bdw': 'build:dist:watch',
230
+ 'bd': 'build:dist',
231
+ 'bdw': 'build:dist:watch',
229
232
  // (dist)lib build - watch is ng build (PRODUCTION MINIFIED CODE)
230
- 'bdp': 'build:dist:prod', 'bdpw': 'build:dist:prod:watch',
233
+ // 'bdp': 'build:dist:prod',
234
+ // 'bdpw': 'build:dist:prod:watch',
231
235
  // (bundle)app build for static code (firedev plugins, project final code, etc.)
232
- 'bba': 'build:bundle:app', 'bbaw': 'build:bundle:app:watch',
236
+ 'bba': 'build:bundle:app',
237
+ 'bbap': 'build:bundle:app:prod',
238
+ // 'bbaw': 'build:bundle:app:watch',
233
239
  // (bunle)lib build for static code (firedev plugins, project final code, etc.)
234
- 'bb': 'build:bundle', 'bbw': 'build:bundle:watch',
240
+ 'bb': 'build:bundle',
241
+ 'bbw': 'build:bundle:watch',
235
242
  // (bunle)lib build for static code with ng build (PRODUCTION MINIFIED CODE)
236
- 'bbp': 'build:bundle:prod', 'bbpw': 'build:bundle:prod:watch',
237
- 'sb': 'static:build',
238
- 'sbp': 'static:build:prod',
239
- 'sbd': 'static:build:dist',
240
- 'sbl': 'static:build:lib',
241
- 'sba': 'static:build:app',
242
- 'cb': 'clean:build'
243
+ // 'bbp': 'build:bundle:prod',
244
+ // 'bbpw': 'build:bundle:prod:watch',
245
+ // 'sb': 'static:build',
246
+ // 'sbp': 'static:build:prod',
247
+ // 'sbd': 'static:build:dist',
248
+ // 'sbl': 'static:build:lib',
249
+ // 'sba': 'static:build:app',
250
+ // 'cb': 'clean:build'
243
251
  };
244
252
  var argsReplacementsOther = {
245
253
  // github docs
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "dependencies": {
3
- "tnp-core": "~13.1.33"
3
+ "tnp-core": "~13.1.54"
4
4
  },
5
5
  "devDependencies": {},
6
6
  "license": "MIT",
7
7
  "private": false,
8
8
  "main": "index.js",
9
9
  "name": "tnp-config",
10
- "version": "13.1.47",
11
- "lastBuildTagHash": "c51afbe5814e9f5e54202d70d95d59c296512630"
10
+ "version": "13.1.49",
11
+ "lastBuildTagHash": "ee605f8745306412add60b0d0083ed76cfd8e491"
12
12
  }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "domain": "tnp-config.example.domain.com",
3
3
  "name": "local",
4
+ "isCoreProject": false,
4
5
  "ip": "localhost",
5
6
  "packageJSON": {
6
7
  "tnp": {
@@ -41,37 +42,37 @@
41
42
  "workerPlugins": {}
42
43
  },
43
44
  "dependencies": {
44
- "tnp-core": "~13.1.33"
45
+ "tnp-core": "~13.1.54"
45
46
  },
46
47
  "devDependencies": {
47
48
  "@angular-devkit/build-angular": "~13.3.9",
48
49
  "@angular-devkit/core": "~13.3.9",
49
- "@angular/cdk": "^13.3.9",
50
+ "@angular/cdk": "~13.3.9",
50
51
  "@angular/cli": "~13.3.9",
51
52
  "@angular/common": "~13.3.0",
52
53
  "@angular/compiler": "~13.3.0",
53
54
  "@angular/compiler-cli": "~13.3.0",
54
55
  "@angular/core": "~13.3.0",
55
- "@angular/flex-layout": "13.0.0-beta.38",
56
+ "@angular/flex-layout": "~13.0.0-beta.38",
56
57
  "@angular/forms": "~13.3.0",
57
- "@angular/material": "^13.3.9",
58
+ "@angular/material": "~13.3.9",
58
59
  "@angular/platform-browser": "~13.3.0",
59
60
  "@angular/platform-browser-dynamic": "~13.3.0",
60
61
  "@angular/pwa": "~13.3.9",
61
62
  "@angular/router": "~13.3.0",
62
63
  "@angular/service-worker": "~13.3.11",
63
- "@babel/cli": "^7.18.6",
64
+ "@babel/cli": "7.18.6",
64
65
  "@iconify/icons-fa-solid": "1.2.2",
65
66
  "@iconify/icons-mdi": "1.2.1",
66
67
  "@mdi/js": "6.5.95",
67
- "@ngrx/component-store": "^13.0.2",
68
- "@ngrx/data": "^13.0.2",
69
- "@ngrx/effects": "^13.0.2",
70
- "@ngrx/entity": "^13.0.2",
71
- "@ngrx/router-store": "^13.0.2",
72
- "@ngrx/schematics": "^13.0.2",
73
- "@ngrx/store": "^13.0.2",
74
- "@ngrx/store-devtools": "^13.0.2",
68
+ "@ngrx/component-store": "~13.0.2",
69
+ "@ngrx/data": "~13.0.2",
70
+ "@ngrx/effects": "~13.0.2",
71
+ "@ngrx/entity": "~13.0.2",
72
+ "@ngrx/router-store": "~13.0.2",
73
+ "@ngrx/schematics": "~13.0.2",
74
+ "@ngrx/store": "~13.0.2",
75
+ "@ngrx/store-devtools": "~13.0.2",
75
76
  "@ngx-formly/bootstrap": "6.0.0-next.8",
76
77
  "@ngx-formly/core": "6.0.0-next.8",
77
78
  "@ngx-formly/ionic": "6.0.0-next.8",
@@ -82,134 +83,135 @@
82
83
  "@ngx-translate/core": "14.0.0",
83
84
  "@ngx-translate/http-loader": "7.0.0",
84
85
  "@swimlane/ngx-datatable": "20.0.0",
85
- "@types/chai": "^4.1.2",
86
+ "@types/chai": "4.1.2",
86
87
  "@types/chokidar": "2.1.3",
87
- "@types/dateformat": "^1.0.1",
88
- "@types/diff": "^3.2.2",
89
- "@types/express": "^4.11.0",
90
- "@types/express-fileupload": "^0.1.1",
91
- "@types/fs-extra": "^7.0.0",
92
- "@types/glob": "^5.0.35",
93
- "@types/http-proxy": "^1.16.0",
88
+ "@types/dateformat": "1.0.1",
89
+ "@types/diff": "3.2.2",
90
+ "@types/express": "4.11.0",
91
+ "@types/express-fileupload": "0.1.1",
92
+ "@types/fs-extra": "7.0.0",
93
+ "@types/glob": "5.0.35",
94
+ "@types/http-proxy": "1.16.0",
94
95
  "@types/http-proxy-middleware": "0.19.2",
95
- "@types/inquirer": "~7.3.1",
96
- "@types/jasmine": "~3.10.0",
97
- "@types/json-stringify-safe": "^5.0.0",
96
+ "@types/inquirer": "7.3.1",
97
+ "@types/jasmine": "3.10.0",
98
+ "@types/json-stringify-safe": "5.0.0",
98
99
  "@types/json5": "0.0.29",
99
- "@types/lockfile": "^1.0.0",
100
+ "@types/lockfile": "1.0.0",
100
101
  "@types/lodash": "4.14.92",
101
- "@types/lowdb": "^1.0.6",
102
- "@types/mocha": "^5.2.5",
103
- "@types/node": "^12.11.1",
104
- "@types/node-notifier": "^5.4.0",
105
- "@types/oauth2orize": "^1.8.0",
106
- "@types/password-hash": "^1.2.19",
107
- "@types/progress": "^2.0.3",
102
+ "@types/lowdb": "1.0.6",
103
+ "@types/mocha": "5.2.5",
104
+ "@types/node": "12.11.1",
105
+ "@types/node-notifier": "5.4.0",
106
+ "@types/oauth2orize": "1.8.0",
107
+ "@types/password-hash": "1.2.19",
108
+ "@types/progress": "2.0.3",
108
109
  "@types/q": "1.5.5",
109
- "@types/rimraf": "^2.0.2",
110
+ "@types/rimraf": "2.0.2",
110
111
  "@types/semver": "6.0.1",
111
- "@types/systeminformation": "^3.23.0",
112
- "@types/vinyl": "^2.0.2",
113
- "@types/watch": "^1.0.0",
114
- "accepts": "^1.3.4",
115
- "any-project-cli": "~13.1.15",
116
- "axios": "^0.17.1",
117
- "background-worker-process": "~13.1.29",
112
+ "@types/systeminformation": "3.23.0",
113
+ "@types/vinyl": "2.0.2",
114
+ "@types/watch": "1.0.0",
115
+ "accepts": "1.3.4",
116
+ "any-project-cli": "~13.1.16",
117
+ "axios": "0.17.1",
118
+ "background-worker-process": "~13.1.30",
118
119
  "bcryptjs": "2.4.3",
119
120
  "better-sqlite3": "7.6.2",
120
- "body-parser": "^1.18.2",
121
- "bootstrap": "^5.1.3",
121
+ "body-parser": "1.18.2",
122
+ "bootstrap": "5.1.3",
122
123
  "bs4-breakpoint": "13.0.32",
123
- "buffer-shims": "^1.0.0",
124
+ "buffer-shims": "1.0.0",
124
125
  "callsite-record": "4.1.3",
125
- "chai": "^4.2.0",
126
- "chalk": "^2.3.2",
127
- "check-node-version": "^3.2.0",
126
+ "chai": "4.2.0",
127
+ "chalk": "2.3.2",
128
+ "check-node-version": "3.2.0",
128
129
  "cheerio": "1.0.0-rc.3",
129
130
  "chokidar": "3.5.1",
130
- "circular-json": "^0.5.1",
131
- "command-exists": "^1.2.2",
131
+ "circular-json": "0.5.1",
132
+ "command-exists": "1.2.2",
132
133
  "compression": "1.7.4",
133
- "concurrently": "^3.5.1",
134
- "content-type": "^1.0.4",
135
- "cookie-parser": "^1.4.3",
136
- "copy-paste": "~1.3.0",
137
- "cors": "^2.8.4",
138
- "cpr": "^3.0.1",
139
- "cross-spawn": "~7.0.3",
140
- "dateformat": "^3.0.3",
134
+ "concurrently": "3.5.1",
135
+ "content-type": "1.0.4",
136
+ "cookie-parser": "1.4.3",
137
+ "copy-paste": "1.3.0",
138
+ "cors": "2.8.4",
139
+ "cpr": "3.0.1",
140
+ "cross-spawn": "7.0.3",
141
+ "dateformat": "3.0.3",
141
142
  "detect-mocha": "0.1.0",
142
- "diff": "^3.2.0",
143
+ "diff": "3.2.0",
143
144
  "element-resize-detector": "1.1.15",
144
- "enquirer": "^2.3.0",
145
+ "enquirer": "2.3.0",
145
146
  "enum-values": "1.2.1",
146
- "errorhandler": "^1.5.0",
147
+ "errorhandler": "1.5.0",
147
148
  "eslint": "7.13.0",
148
149
  "eslint-plugin-import": "2.22.1",
149
150
  "eslint-plugin-jsdoc": "30.7.8",
150
151
  "eslint-plugin-prefer-arrow": "1.2.2",
151
- "express": "^4.16.3",
152
- "express-fileupload": "^0.4.0",
152
+ "express": "4.16.3",
153
+ "express-fileupload": "0.4.0",
153
154
  "express-session": "1.17.3",
154
- "fbgraph": "^1.4.1",
155
- "file-loader": "^1.1.5",
156
- "firedev-crud": "~13.1.34",
157
- "firedev-crud-deamon": "~13.1.24",
158
- "firedev-ports": "~13.1.28",
159
- "firedev-storage": "~13.1.19",
160
- "firedev-typeorm": "~13.1.5",
155
+ "fbgraph": "1.4.1",
156
+ "file-loader": "1.1.5",
157
+ "firedev": "^13",
158
+ "firedev-crud": "~13.1.35",
159
+ "firedev-crud-deamon": "~13.1.25",
160
+ "firedev-ports": "~13.1.29",
161
+ "firedev-storage": "~13.1.20",
162
+ "firedev-typeorm": "~13.1.7",
161
163
  "fkill": "6.1.0",
162
- "font-awesome": "^4.7.0",
164
+ "font-awesome": "4.7.0",
163
165
  "fs-extra": "8.1.0",
164
- "fuzzy": "^0.1.3",
165
- "glob": "^7.1.2",
166
- "gulp": "^3.9.1",
167
- "hostile": "~1.3.3",
168
- "http-proxy": "^1.16.2",
166
+ "fuzzy": "0.1.3",
167
+ "glob": "7.1.2",
168
+ "gulp": "3.9.1",
169
+ "hostile": "1.3.3",
170
+ "http-proxy": "1.16.2",
169
171
  "http-proxy-middleware": "0.19.1",
170
172
  "http-server": "0.11.1",
171
- "incremental-compiler": "~13.1.7",
172
- "inquirer": "~7.3.3",
173
- "inquirer-autocomplete-prompt": "~1.3.0",
174
- "is-elevated": "~3.0.0",
173
+ "incremental-compiler": "~13.1.8",
174
+ "inquirer": "7.3.3",
175
+ "inquirer-autocomplete-prompt": "1.3.0",
176
+ "is-elevated": "3.0.0",
175
177
  "isomorphic-region-loader": "~1.0.2",
176
- "istanbul-instrumenter-loader": "^2.0.0",
177
- "jasmine-core": "~4.0.0",
178
- "jscodeshift": "^0.6.3",
179
- "json-stringify-safe": "^5.0.1",
180
- "json10": "~13.1.27",
181
- "json10-writer": "~13.1.25",
182
- "json5": "~2.1.3",
183
- "json5-writer": "~0.2.0",
184
- "karma": "~6.3.0",
185
- "karma-chrome-launcher": "~3.1.0",
186
- "karma-cli": "~1.0.1",
187
- "karma-coverage": "~2.1.0",
188
- "karma-jasmine": "~4.0.0",
189
- "karma-jasmine-html-reporter": "~1.7.0",
190
- "lnk": "~1.0.1",
191
- "lockfile": "^1.0.4",
192
- "lodash": "^4.17.4",
193
- "lodash-walk-object": "~13.1.27",
178
+ "istanbul-instrumenter-loader": "2.0.0",
179
+ "jasmine-core": "4.0.0",
180
+ "jscodeshift": "0.6.3",
181
+ "json-stringify-safe": "5.0.1",
182
+ "json10": "~13.1.28",
183
+ "json10-writer": "~13.1.26",
184
+ "json5": "2.1.3",
185
+ "json5-writer": "0.2.0",
186
+ "karma": "6.3.0",
187
+ "karma-chrome-launcher": "3.1.0",
188
+ "karma-cli": "1.0.1",
189
+ "karma-coverage": "2.1.0",
190
+ "karma-jasmine": "4.0.0",
191
+ "karma-jasmine-html-reporter": "1.7.0",
192
+ "lnk": "1.0.1",
193
+ "lockfile": "1.0.4",
194
+ "lodash": "4.17.4",
195
+ "lodash-walk-object": "~13.1.28",
194
196
  "lodash.get": ">= 4",
195
197
  "lodash.isequal": ">= 4",
196
198
  "lodash.merge": ">= 4",
197
199
  "lodash.set": ">= 4",
198
- "lowdb": "^1.0.0",
199
- "magic-renamer": "~13.1.16",
200
+ "lowdb": "1.0.0",
201
+ "magic-renamer": "~13.1.17",
200
202
  "material-design-icons": "3.0.1",
201
- "method-override": "^2.3.10",
202
- "minimist": "^1.2.0",
203
- "mkdirp": "^0.5.1",
204
- "mocha": "^5.2.0",
205
- "moment": "^2.22.2",
206
- "morphi": "~13.1.7",
207
- "ng-packagr": "^13.0.0",
208
- "ng-talkback": "~13.1.18",
209
- "ng2-logger": "~13.1.5",
210
- "ng2-rest": "~13.1.5",
211
- "ng4-icons": "~13.1.20",
212
- "ng4-modal": "~13.1.22",
203
+ "method-override": "2.3.10",
204
+ "minimist": "1.2.0",
205
+ "mkdirp": "0.5.1",
206
+ "mocha": "5.2.0",
207
+ "moment": "2.22.2",
208
+ "morphi": "~13.1.8",
209
+ "ng-packagr": "13.0.0",
210
+ "ng-talkback": "~13.1.19",
211
+ "ng2-logger": "~13.1.6",
212
+ "ng2-rest": "~13.1.6",
213
+ "ng4-icons": "~13.1.21",
214
+ "ng4-modal": "~13.1.23",
213
215
  "ngx-bootstrap": "8.0.0",
214
216
  "ngx-editor": "12.2.1",
215
217
  "ngx-moment": "6.0.2",
@@ -217,73 +219,73 @@
217
219
  "ngx-store": "3.1.1",
218
220
  "ngx-toastr": "14.2.2",
219
221
  "ngx-wig": "13.0.3",
220
- "node-cli-tester": "~13.1.18",
222
+ "node-cli-tester": "~13.1.19",
221
223
  "node-localstorage": "2.1.6",
222
- "node-notifier": "^6.0.0",
223
- "nodemon": "^1.14.11",
224
- "npm-get-dependents": "^1.0.1",
225
- "npm-run": "^4.1.2",
226
- "omelette": "^0.4.5",
224
+ "node-notifier": "6.0.0",
225
+ "nodemon": "1.14.11",
226
+ "npm-get-dependents": "1.0.1",
227
+ "npm-run": "4.1.2",
228
+ "omelette": "0.4.5",
227
229
  "open": "7.2.1",
228
230
  "ora": "3.4.0",
229
- "passport": "^0.3.2",
230
- "passport-http-bearer": "^1.0.1",
231
- "password-hash": "^1.2.2",
231
+ "passport": "0.3.2",
232
+ "passport-http-bearer": "1.0.1",
233
+ "password-hash": "1.2.2",
232
234
  "portfinder": "1.0.21",
233
235
  "prettier": "2.5.1",
234
- "progress": "^2.0.3",
235
- "prompts": "^0.1.8",
236
+ "progress": "2.0.3",
237
+ "prompts": "0.1.8",
236
238
  "ps-list": "6.1.0",
237
- "ps-node": "^0.1.6",
238
- "q": "^1.5.1",
239
- "randomcolor": "^0.5.3",
240
- "record-replay-req-res-scenario": "~13.1.19",
241
- "reflect-metadata": "^0.1.10",
242
- "rimraf": "^2.6.2",
239
+ "ps-node": "0.1.6",
240
+ "q": "1.5.1",
241
+ "randomcolor": "0.5.3",
242
+ "record-replay-req-res-scenario": "~13.1.20",
243
+ "reflect-metadata": "0.1.10",
244
+ "rimraf": "2.6.2",
243
245
  "rxjs": "~7.5.0",
244
246
  "semver": "6.3.0",
245
- "simple-git": "^1.96.0",
246
- "sloc": "^0.2.0",
247
- "socket.io": "~2.4.1",
248
- "sort-package-json": "^1.11.0",
249
- "sql.js": "^1.8.0",
250
- "static-columns": "~13.1.28",
251
- "string-similarity": "~4.0.2",
252
- "sudo-block": "~3.0.0",
253
- "systeminformation": "^3.45.7",
254
- "task.js": "^0.1.5",
255
- "tnp-cli": "~13.1.31",
256
- "tnp-config": "~13.1.46",
257
- "tnp-db": "~13.1.4",
258
- "tnp-helpers": "~13.1.6",
259
- "tnp-models": "~13.1.5",
260
- "tnp-ui": "~13.1.26",
261
- "ts-debug": "^1.3.0",
262
- "ts-loader": "^2.3.1",
263
- "ts-node": "~10.7.0",
264
- "tslib": "^2.3.0",
265
- "typeorm": "^0.3.10",
247
+ "simple-git": "1.96.0",
248
+ "sloc": "0.2.0",
249
+ "socket.io": "2.4.1",
250
+ "sort-package-json": "1.11.0",
251
+ "sql.js": "1.8.0",
252
+ "static-columns": "~13.1.29",
253
+ "string-similarity": "4.0.2",
254
+ "sudo-block": "3.0.0",
255
+ "systeminformation": "3.45.7",
256
+ "task.js": "0.1.5",
257
+ "tnp-cli": "~13.1.32",
258
+ "tnp-config": "~13.1.48",
259
+ "tnp-db": "~13.1.5",
260
+ "tnp-helpers": "~13.1.8",
261
+ "tnp-models": "~13.1.6",
262
+ "tnp-ui": "~13.1.27",
263
+ "ts-debug": "1.3.0",
264
+ "ts-loader": "2.3.1",
265
+ "ts-node": "10.7.0",
266
+ "tslib": "~2.3.0",
267
+ "typeorm": "~0.3.10",
266
268
  "typescript": "~4.6.2",
267
- "typescript-class-helpers": "~13.1.6",
268
- "typescript-formatter": "7.2.2",
269
- "underscore": "^1.9.1",
270
- "uuid": "^8.3.2",
271
- "validator": "^9.2.0",
272
- "vpn-split": "~13.1.22",
273
- "watch": "~1.0.2",
269
+ "typescript-class-helpers": "~13.1.7",
270
+ "typescript-formatter": "~7.2.2",
271
+ "underscore": "1.9.1",
272
+ "uuid": "8.3.2",
273
+ "validator": "9.2.0",
274
+ "vpn-split": "~13.1.23",
275
+ "watch": "1.0.2",
274
276
  "zone.js": "~0.11.4"
275
277
  },
276
278
  "license": "MIT",
277
279
  "private": false,
278
280
  "main": "index.js",
279
281
  "name": "tnp-config",
280
- "version": "13.1.47",
281
- "lastBuildTagHash": "c51afbe5814e9f5e54202d70d95d59c296512630"
282
+ "version": "13.1.49",
283
+ "lastBuildTagHash": "ee605f8745306412add60b0d0083ed76cfd8e491"
282
284
  },
283
285
  "build": {
284
- "number": 415,
285
- "date": "2022-12-16T15:30:56.000Z",
286
- "hash": "4e19e0b1f746d9859ca9abcb16d8d7329466ab0e",
286
+ "number": 422,
287
+ "date": "2022-12-30T03:27:44.000Z",
288
+ "hash": "42de8ed4a06edcad089a293a1eb4ce5a7de7368d",
287
289
  "options": {}
288
290
  },
289
291
  "currentProjectName": "tnp-config",
@@ -291,7 +293,7 @@
291
293
  "currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22tnp-config%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
292
294
  "currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
293
295
  "currentProjectType": "isomorphic-lib",
294
- "currentFrameworkVersion": "13.1.109",
296
+ "currentFrameworkVersion": "13.1.110",
295
297
  "currentProjectIsStrictSite": false,
296
298
  "currentProjectIsDependencySite": false,
297
299
  "currentProjectIsStatic": false,