ng-talkback 13.1.18 → 16.0.1
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 +7 -0
- package/browser/README.md +24 -24
- package/browser/esm2022/lib/index.mjs +29 -0
- package/{client/fesm2015 → browser/fesm2022}/ng-talkback.mjs +2 -0
- package/browser/fesm2022/ng-talkback.mjs.map +1 -0
- package/{client/ng-talkback.d.ts → browser/index.d.ts} +2 -1
- package/browser/lib/index.d.ts +2 -1
- package/browser/package.json +6 -12
- package/browser/public-api.d.ts +2 -1
- package/client/README.md +24 -24
- package/client/esm2022/lib/index.mjs +29 -0
- package/{browser/fesm2015 → client/fesm2022}/ng-talkback.mjs +2 -0
- package/client/fesm2022/ng-talkback.mjs.map +1 -0
- package/{websql/ng-talkback.d.ts → client/index.d.ts} +2 -1
- package/client/lib/index.d.ts +2 -1
- package/client/package.json +321 -25
- package/client/public-api.d.ts +2 -1
- package/index.js.map +1 -1
- package/lib/es6.backend.js.map +1 -1
- package/lib/features/error-rate.backend.js.map +1 -1
- package/lib/features/latency.backend.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js.map +1 -1
- package/lib/logger.backend.js.map +1 -1
- package/lib/options.backend.js.map +1 -1
- package/lib/request-handler.backend.js.map +1 -1
- package/lib/server.backend.d.ts +1 -1
- package/lib/server.backend.js.map +1 -1
- package/lib/summary.backend.js.map +1 -1
- package/lib/talkback-factory.backend.js.map +1 -1
- package/lib/tape-matcher.backend.js.map +1 -1
- package/lib/tape-renderer.backend.js.map +1 -1
- package/lib/tape-store.backend.js.map +1 -1
- package/lib/tape.backend.js.map +1 -1
- package/lib/types.backend.d.ts +3 -3
- package/lib/types.backend.js.map +1 -1
- package/lib/utils/content-encoding.backend.js.map +1 -1
- package/lib/utils/headers.backend.js.map +1 -1
- package/lib/utils/media-type.backend.js.map +1 -1
- package/package.json +56 -9
- package/package.json_devDependencies.json +220 -220
- package/package.json_tnp.json5 +57 -53
- package/tmp-environment.json +229 -209
- package/websql/README.md +24 -24
- package/websql/esm2022/lib/index.mjs +29 -0
- package/{browser/fesm2020 → websql/fesm2022}/ng-talkback.mjs +2 -0
- package/websql/{fesm2015 → fesm2022}/ng-talkback.mjs.map +1 -1
- package/{browser/ng-talkback.d.ts → websql/index.d.ts} +2 -1
- package/websql/lib/index.d.ts +2 -1
- package/websql/package.json +6 -12
- package/websql/public-api.d.ts +2 -1
- package/app.d.ts +0 -1
- package/app.js +0 -6
- package/app.js.map +0 -1
- package/browser/esm2020/lib/index.mjs +0 -27
- package/browser/fesm2015/ng-talkback.mjs.map +0 -1
- package/browser/fesm2020/ng-talkback.mjs.map +0 -1
- package/client/esm2020/lib/index.mjs +0 -27
- package/client/fesm2015/ng-talkback.mjs.map +0 -1
- package/client/fesm2020/ng-talkback.mjs +0 -30
- package/client/fesm2020/ng-talkback.mjs.map +0 -1
- package/websql/esm2020/lib/index.mjs +0 -27
- package/websql/fesm2015/ng-talkback.mjs +0 -30
- package/websql/fesm2020/ng-talkback.mjs +0 -30
- package/websql/fesm2020/ng-talkback.mjs.map +0 -1
- /package/browser/{esm2020 → esm2022}/ng-talkback.mjs +0 -0
- /package/browser/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/client/{esm2020 → esm2022}/ng-talkback.mjs +0 -0
- /package/client/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/websql/{esm2020 → esm2022}/ng-talkback.mjs +0 -0
- /package/websql/{esm2020 → esm2022}/public-api.mjs +0 -0
package/tmp-environment.json
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"domain": "ng-talkback.example.domain.com",
|
|
3
|
-
"
|
|
3
|
+
"isCoreProject": false,
|
|
4
4
|
"ip": "localhost",
|
|
5
5
|
"packageJSON": {
|
|
6
6
|
"tnp": {
|
|
7
7
|
"resources": [],
|
|
8
8
|
"overrided": {
|
|
9
9
|
"linkedFolders": [],
|
|
10
|
-
"ignoreDepsPattern": [
|
|
11
|
-
"*"
|
|
12
|
-
],
|
|
10
|
+
"ignoreDepsPattern": [],
|
|
13
11
|
"includeAsDev": [],
|
|
14
12
|
"includeOnly": [
|
|
15
13
|
"json5",
|
|
@@ -18,7 +16,8 @@
|
|
|
18
16
|
"uuid",
|
|
19
17
|
"axios"
|
|
20
18
|
],
|
|
21
|
-
"dependencies": {}
|
|
19
|
+
"dependencies": {},
|
|
20
|
+
"npmFixes": []
|
|
22
21
|
},
|
|
23
22
|
"linkedProjects": [],
|
|
24
23
|
"smartContainerBuildTarget": "",
|
|
@@ -26,11 +25,12 @@
|
|
|
26
25
|
"libReleaseOptions": {
|
|
27
26
|
"nodts": false,
|
|
28
27
|
"obscure": false,
|
|
29
|
-
"ugly": false
|
|
28
|
+
"ugly": false,
|
|
29
|
+
"includeNodeModules": false
|
|
30
30
|
},
|
|
31
31
|
"smartContainerTarget": "",
|
|
32
32
|
"type": "isomorphic-lib",
|
|
33
|
-
"version": "
|
|
33
|
+
"version": "v4",
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "node tools/build.js",
|
|
36
36
|
"ci": "yarn ts-check && yarn test && yarn build && USE_DIST=1 yarn test",
|
|
@@ -52,16 +52,15 @@
|
|
|
52
52
|
"workerPlugins": {}
|
|
53
53
|
},
|
|
54
54
|
"name": "ng-talkback",
|
|
55
|
-
"version": "
|
|
56
|
-
"main": "index.js",
|
|
55
|
+
"version": "16.0.1",
|
|
57
56
|
"license": "MIT",
|
|
58
57
|
"description": "A node.js HTTP proxy that records and playbacks requests",
|
|
59
58
|
"dependencies": {
|
|
60
|
-
"axios": "
|
|
61
|
-
"json5": "
|
|
62
|
-
"lodash": "
|
|
63
|
-
"mkdirp": "
|
|
64
|
-
"uuid": "
|
|
59
|
+
"axios": "1.3.5",
|
|
60
|
+
"json5": "2.2.1",
|
|
61
|
+
"lodash": "4.17.20",
|
|
62
|
+
"mkdirp": "0.5.1",
|
|
63
|
+
"uuid": "8.3.2"
|
|
65
64
|
},
|
|
66
65
|
"repository": {
|
|
67
66
|
"type": "git",
|
|
@@ -82,246 +81,267 @@
|
|
|
82
81
|
"ts-check": "tsc --noEmit"
|
|
83
82
|
},
|
|
84
83
|
"private": false,
|
|
85
|
-
"lastBuildTagHash": "
|
|
84
|
+
"lastBuildTagHash": "b62be73cecef812a0620834a0ba2885effab9cc3",
|
|
86
85
|
"devDependencies": {
|
|
87
|
-
"@angular-devkit/build-angular": "~
|
|
88
|
-
"@angular-devkit/core": "~
|
|
89
|
-
"@angular/
|
|
90
|
-
"@angular/
|
|
91
|
-
"@angular/
|
|
92
|
-
"@angular/
|
|
93
|
-
"@angular/
|
|
94
|
-
"@angular/
|
|
95
|
-
"@angular/
|
|
96
|
-
"@angular/
|
|
97
|
-
"@angular/
|
|
98
|
-
"@angular/
|
|
99
|
-
"@angular/
|
|
100
|
-
"@angular/
|
|
101
|
-
"@angular/
|
|
102
|
-
"@angular/
|
|
103
|
-
"@
|
|
86
|
+
"@angular-devkit/build-angular": "~16.0.5",
|
|
87
|
+
"@angular-devkit/core": "~16.0.5",
|
|
88
|
+
"@angular-material-extensions/password-strength": "~12.1.0",
|
|
89
|
+
"@angular/animations": "~16.0.0",
|
|
90
|
+
"@angular/cdk": "~16.0.3",
|
|
91
|
+
"@angular/cli": "~16.0.5",
|
|
92
|
+
"@angular/common": "~16.0.0",
|
|
93
|
+
"@angular/compiler": "~16.0.0",
|
|
94
|
+
"@angular/compiler-cli": "~16.0.4",
|
|
95
|
+
"@angular/core": "~16.0.0",
|
|
96
|
+
"@angular/elements": "~16.0.4",
|
|
97
|
+
"@angular/forms": "~16.0.0",
|
|
98
|
+
"@angular/material": "~16.0.3",
|
|
99
|
+
"@angular/platform-browser": "~16.0.4",
|
|
100
|
+
"@angular/platform-browser-dynamic": "~16.0.4",
|
|
101
|
+
"@angular/pwa": "~16.0.5",
|
|
102
|
+
"@angular/router": "~16.0.0",
|
|
103
|
+
"@angular/service-worker": "~16.0.4",
|
|
104
|
+
"@babel/cli": "7.18.6",
|
|
104
105
|
"@iconify/icons-fa-solid": "1.2.2",
|
|
105
106
|
"@iconify/icons-mdi": "1.2.1",
|
|
106
|
-
"@mdi/js": "
|
|
107
|
-
"@
|
|
108
|
-
"@
|
|
109
|
-
"@
|
|
110
|
-
"@
|
|
111
|
-
"@
|
|
112
|
-
"@ngrx/
|
|
113
|
-
"@ngrx/
|
|
114
|
-
"@ngrx/
|
|
115
|
-
"@
|
|
116
|
-
"@
|
|
117
|
-
"@
|
|
118
|
-
"@
|
|
119
|
-
"@
|
|
120
|
-
"@ngx-
|
|
121
|
-
"@ngx-
|
|
122
|
-
"@ngx-translate/core": "
|
|
123
|
-
"@ngx-translate/http-loader": "
|
|
124
|
-
"@
|
|
125
|
-
"@
|
|
107
|
+
"@mdi/js": "7.2.96",
|
|
108
|
+
"@ng-matero/extensions": "16.0.0",
|
|
109
|
+
"@ngneat/falso": "6.4.0",
|
|
110
|
+
"@ngneat/hot-toast": "5.0.1",
|
|
111
|
+
"@ngneat/overview": "5.0.0",
|
|
112
|
+
"@ngneat/spectator": "15.0.0",
|
|
113
|
+
"@ngrx/component-store": "~16.0.1",
|
|
114
|
+
"@ngrx/data": "~16.0.1",
|
|
115
|
+
"@ngrx/effects": "~16.0.1",
|
|
116
|
+
"@ngrx/entity": "~16.0.1",
|
|
117
|
+
"@ngrx/router-store": "~16.0.1",
|
|
118
|
+
"@ngrx/schematics": "~16.0.1",
|
|
119
|
+
"@ngrx/store": "~16.0.1",
|
|
120
|
+
"@ngrx/store-devtools": "~16.0.1",
|
|
121
|
+
"@ngx-formly/core": "6.1.7",
|
|
122
|
+
"@ngx-formly/material": "6.1.7",
|
|
123
|
+
"@ngx-translate/core": "15.0.0",
|
|
124
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
125
|
+
"@sweetalert2/ngx-sweetalert2": "12.1.0",
|
|
126
|
+
"@testdeck/jasmine": "0.3.3",
|
|
127
|
+
"@testdeck/jest": "0.3.3",
|
|
128
|
+
"@testdeck/mocha": "0.3.3",
|
|
129
|
+
"@types/chai": "4.1.2",
|
|
126
130
|
"@types/chokidar": "2.1.3",
|
|
127
|
-
"@types/dateformat": "
|
|
128
|
-
"@types/diff": "
|
|
129
|
-
"@types/express": "
|
|
130
|
-
"@types/express-fileupload": "
|
|
131
|
-
"@types/fs-extra": "
|
|
132
|
-
"@types/glob": "
|
|
133
|
-
"@types/http-proxy": "
|
|
131
|
+
"@types/dateformat": "1.0.1",
|
|
132
|
+
"@types/diff": "3.2.2",
|
|
133
|
+
"@types/express": "4.11.0",
|
|
134
|
+
"@types/express-fileupload": "1.4.1",
|
|
135
|
+
"@types/fs-extra": "7.0.0",
|
|
136
|
+
"@types/glob": "5.0.35",
|
|
137
|
+
"@types/http-proxy": "1.16.0",
|
|
134
138
|
"@types/http-proxy-middleware": "0.19.2",
|
|
135
|
-
"@types/inquirer": "
|
|
136
|
-
"@types/jasmine": "
|
|
137
|
-
"@types/json-stringify-safe": "
|
|
139
|
+
"@types/inquirer": "7.3.1",
|
|
140
|
+
"@types/jasmine": "4.3.0",
|
|
141
|
+
"@types/json-stringify-safe": "5.0.0",
|
|
138
142
|
"@types/json5": "0.0.29",
|
|
139
|
-
"@types/lockfile": "
|
|
143
|
+
"@types/lockfile": "1.0.0",
|
|
140
144
|
"@types/lodash": "4.14.92",
|
|
141
|
-
"@types/lowdb": "
|
|
142
|
-
"@types/mocha": "
|
|
143
|
-
"@types/node": "
|
|
144
|
-
"@types/node-notifier": "
|
|
145
|
-
"@types/oauth2orize": "
|
|
146
|
-
"@types/password-hash": "
|
|
147
|
-
"@types/progress": "
|
|
145
|
+
"@types/lowdb": "1.0.6",
|
|
146
|
+
"@types/mocha": "5.2.5",
|
|
147
|
+
"@types/node": "16.18.21",
|
|
148
|
+
"@types/node-notifier": "5.4.0",
|
|
149
|
+
"@types/oauth2orize": "1.8.0",
|
|
150
|
+
"@types/password-hash": "1.2.19",
|
|
151
|
+
"@types/progress": "2.0.3",
|
|
148
152
|
"@types/q": "1.5.5",
|
|
149
|
-
"@types/rimraf": "
|
|
153
|
+
"@types/rimraf": "2.0.2",
|
|
150
154
|
"@types/semver": "6.0.1",
|
|
151
|
-
"@types/systeminformation": "
|
|
152
|
-
"@types/vinyl": "
|
|
153
|
-
"@types/watch": "
|
|
154
|
-
"accepts": "
|
|
155
|
-
"
|
|
156
|
-
"
|
|
155
|
+
"@types/systeminformation": "3.23.0",
|
|
156
|
+
"@types/vinyl": "2.0.2",
|
|
157
|
+
"@types/watch": "1.0.0",
|
|
158
|
+
"accepts": "1.3.4",
|
|
159
|
+
"angular-material-css-vars": "5.0.2",
|
|
160
|
+
"any-project-cli": "~16.0.31",
|
|
161
|
+
"background-worker-process": "~16.0.48",
|
|
162
|
+
"base32": "0.0.7",
|
|
157
163
|
"bcryptjs": "2.4.3",
|
|
158
164
|
"better-sqlite3": "7.6.2",
|
|
159
|
-
"body-parser": "
|
|
160
|
-
"bootstrap": "
|
|
161
|
-
"
|
|
162
|
-
"buffer-shims": "^1.0.0",
|
|
165
|
+
"body-parser": "1.18.2",
|
|
166
|
+
"bootstrap": "4.6.2",
|
|
167
|
+
"buffer-shims": "1.0.0",
|
|
163
168
|
"callsite-record": "4.1.3",
|
|
164
|
-
"chai": "
|
|
165
|
-
"chalk": "
|
|
166
|
-
"check-node-version": "
|
|
169
|
+
"chai": "4.2.0",
|
|
170
|
+
"chalk": "2.3.2",
|
|
171
|
+
"check-node-version": "3.2.0",
|
|
167
172
|
"cheerio": "1.0.0-rc.3",
|
|
168
173
|
"chokidar": "3.5.1",
|
|
169
|
-
"circular-json": "
|
|
170
|
-
"
|
|
174
|
+
"circular-json": "0.5.1",
|
|
175
|
+
"class-validator": "0.14.0",
|
|
176
|
+
"command-exists": "1.2.2",
|
|
171
177
|
"compression": "1.7.4",
|
|
172
|
-
"concurrently": "
|
|
173
|
-
"content-type": "
|
|
174
|
-
"cookie-parser": "
|
|
175
|
-
"copy-paste": "
|
|
176
|
-
"cors": "
|
|
177
|
-
"cpr": "
|
|
178
|
-
"cross-spawn": "
|
|
179
|
-
"dateformat": "
|
|
178
|
+
"concurrently": "3.5.1",
|
|
179
|
+
"content-type": "1.0.4",
|
|
180
|
+
"cookie-parser": "1.4.3",
|
|
181
|
+
"copy-paste": "1.5.3",
|
|
182
|
+
"cors": "2.8.4",
|
|
183
|
+
"cpr": "3.0.1",
|
|
184
|
+
"cross-spawn": "7.0.3",
|
|
185
|
+
"dateformat": "3.0.3",
|
|
180
186
|
"detect-mocha": "0.1.0",
|
|
181
|
-
"diff": "
|
|
187
|
+
"diff": "3.2.0",
|
|
182
188
|
"element-resize-detector": "1.1.15",
|
|
183
|
-
"enquirer": "
|
|
189
|
+
"enquirer": "2.3.0",
|
|
184
190
|
"enum-values": "1.2.1",
|
|
185
|
-
"errorhandler": "
|
|
191
|
+
"errorhandler": "1.5.0",
|
|
186
192
|
"eslint": "7.13.0",
|
|
187
193
|
"eslint-plugin-import": "2.22.1",
|
|
188
194
|
"eslint-plugin-jsdoc": "30.7.8",
|
|
189
195
|
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
190
|
-
"express": "
|
|
191
|
-
"express-fileupload": "
|
|
196
|
+
"express": "4.16.3",
|
|
197
|
+
"express-fileupload": "1.4.0",
|
|
192
198
|
"express-session": "1.17.3",
|
|
193
|
-
"
|
|
194
|
-
"file-
|
|
195
|
-
"firedev
|
|
196
|
-
"firedev-crud
|
|
197
|
-
"firedev-
|
|
198
|
-
"firedev-
|
|
199
|
-
"firedev-
|
|
199
|
+
"file-loader": "1.1.5",
|
|
200
|
+
"file-saver": "2.0.5",
|
|
201
|
+
"firedev": "^16",
|
|
202
|
+
"firedev-crud": "~16.0.53",
|
|
203
|
+
"firedev-crud-deamon": "~16.0.43",
|
|
204
|
+
"firedev-ports": "~16.0.48",
|
|
205
|
+
"firedev-storage": "~16.0.40",
|
|
206
|
+
"firedev-type-sql": "~16.0.1",
|
|
207
|
+
"firedev-typeorm": "~16.0.37",
|
|
208
|
+
"firedev-ui": "~16.0.7",
|
|
200
209
|
"fkill": "6.1.0",
|
|
201
|
-
"font-awesome": "
|
|
210
|
+
"font-awesome": "4.7.0",
|
|
211
|
+
"form-data": "4.0.0",
|
|
202
212
|
"fs-extra": "8.1.0",
|
|
203
|
-
"fuzzy": "
|
|
204
|
-
"glob": "
|
|
205
|
-
"gulp": "
|
|
206
|
-
"hostile": "
|
|
207
|
-
"
|
|
213
|
+
"fuzzy": "0.1.3",
|
|
214
|
+
"glob": "7.1.2",
|
|
215
|
+
"gulp": "3.9.1",
|
|
216
|
+
"hostile": "1.3.3",
|
|
217
|
+
"howler": "2.2.3",
|
|
218
|
+
"http-proxy": "1.16.2",
|
|
208
219
|
"http-proxy-middleware": "0.19.1",
|
|
209
220
|
"http-server": "0.11.1",
|
|
210
|
-
"
|
|
211
|
-
"
|
|
212
|
-
"inquirer
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"karma
|
|
226
|
-
"karma-
|
|
227
|
-
"karma-
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"lodash
|
|
235
|
-
"lowdb": "
|
|
236
|
-
"magic-renamer": "~
|
|
221
|
+
"immutable": "4.3.0",
|
|
222
|
+
"incremental-compiler": "~16.0.30",
|
|
223
|
+
"inquirer": "7.3.3",
|
|
224
|
+
"inquirer-autocomplete-prompt": "1.3.0",
|
|
225
|
+
"is-elevated": "3.0.0",
|
|
226
|
+
"isomorphic-region-loader": "~16.0.41",
|
|
227
|
+
"istanbul-instrumenter-loader": "2.0.0",
|
|
228
|
+
"jasmine-core": "4.6.0",
|
|
229
|
+
"jimp": "0.22.8",
|
|
230
|
+
"jscodeshift": "0.6.3",
|
|
231
|
+
"json-stringify-safe": "5.0.1",
|
|
232
|
+
"json10": "~16.0.48",
|
|
233
|
+
"json10-writer": "~16.0.44",
|
|
234
|
+
"json5-writer": "0.2.0",
|
|
235
|
+
"jszip": "3.10.1",
|
|
236
|
+
"karma": "6.4.0",
|
|
237
|
+
"karma-chrome-launcher": "3.2.0",
|
|
238
|
+
"karma-cli": "1.0.1",
|
|
239
|
+
"karma-coverage": "2.2.0",
|
|
240
|
+
"karma-jasmine": "5.1.0",
|
|
241
|
+
"karma-jasmine-html-reporter": "2.0.0",
|
|
242
|
+
"lnk": "1.0.1",
|
|
243
|
+
"localforage": "1.10.0",
|
|
244
|
+
"lockfile": "1.0.4",
|
|
245
|
+
"lodash-walk-object": "~16.0.48",
|
|
246
|
+
"lowdb": "1.0.0",
|
|
247
|
+
"magic-renamer": "~16.0.45",
|
|
237
248
|
"material-design-icons": "3.0.1",
|
|
238
|
-
"method-override": "
|
|
239
|
-
"minimist": "
|
|
240
|
-
"mocha": "
|
|
241
|
-
"moment": "
|
|
242
|
-
"morphi": "~
|
|
243
|
-
"ng-
|
|
244
|
-
"ng-
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"ngx-
|
|
249
|
+
"method-override": "2.3.10",
|
|
250
|
+
"minimist": "1.2.0",
|
|
251
|
+
"mocha": "5.2.0",
|
|
252
|
+
"moment": "2.29.3",
|
|
253
|
+
"morphi": "~16.0.5",
|
|
254
|
+
"ng-for-track-by-property": "16.0.1",
|
|
255
|
+
"ng-in-viewport": "15.0.2",
|
|
256
|
+
"ng-lock": "16.0.1",
|
|
257
|
+
"ng-packagr": "16.0.1",
|
|
258
|
+
"ng-talkback": "~13.1.19",
|
|
259
|
+
"ng2-logger": "~16.0.4",
|
|
260
|
+
"ng2-rest": "~16.0.12",
|
|
261
|
+
"ngx-ace-wrapper": "14.0.0",
|
|
262
|
+
"ngx-editor": "15.3.0",
|
|
263
|
+
"ngx-highlightjs": "9.0.0",
|
|
251
264
|
"ngx-moment": "6.0.2",
|
|
252
|
-
"ngx-pipes": "3.
|
|
265
|
+
"ngx-pipes": "3.2.2",
|
|
266
|
+
"ngx-progressbar": "11.0.0",
|
|
267
|
+
"ngx-scrollbar": "12.0.0",
|
|
268
|
+
"ngx-scrolltop": "6.0.0",
|
|
253
269
|
"ngx-store": "3.1.1",
|
|
254
|
-
"ngx-
|
|
255
|
-
"
|
|
256
|
-
"node-cli-tester": "~13.1.17",
|
|
270
|
+
"ngx-typed-js": "2.1.1",
|
|
271
|
+
"node-cli-tester": "~16.0.2",
|
|
257
272
|
"node-localstorage": "2.1.6",
|
|
258
|
-
"node-notifier": "
|
|
259
|
-
"nodemon": "
|
|
260
|
-
"npm-get-dependents": "
|
|
261
|
-
"npm-run": "
|
|
262
|
-
"omelette": "
|
|
273
|
+
"node-notifier": "6.0.0",
|
|
274
|
+
"nodemon": "1.14.11",
|
|
275
|
+
"npm-get-dependents": "1.0.1",
|
|
276
|
+
"npm-run": "4.1.2",
|
|
277
|
+
"omelette": "0.4.5",
|
|
263
278
|
"open": "7.2.1",
|
|
264
279
|
"ora": "3.4.0",
|
|
265
|
-
"passport": "
|
|
266
|
-
"passport-http-bearer": "
|
|
267
|
-
"password-hash": "
|
|
280
|
+
"passport": "0.3.2",
|
|
281
|
+
"passport-http-bearer": "1.0.1",
|
|
282
|
+
"password-hash": "1.2.2",
|
|
283
|
+
"pica": "9.0.1",
|
|
268
284
|
"portfinder": "1.0.21",
|
|
269
285
|
"prettier": "2.5.1",
|
|
270
|
-
"progress": "
|
|
271
|
-
"prompts": "
|
|
286
|
+
"progress": "2.0.3",
|
|
287
|
+
"prompts": "0.1.8",
|
|
272
288
|
"ps-list": "6.1.0",
|
|
273
|
-
"ps-node": "
|
|
274
|
-
"q": "
|
|
275
|
-
"randomcolor": "
|
|
276
|
-
"record-replay-req-res-scenario": "~13.1.
|
|
277
|
-
"reflect-metadata": "
|
|
278
|
-
"rimraf": "
|
|
279
|
-
"rxjs": "~7.
|
|
289
|
+
"ps-node": "0.1.6",
|
|
290
|
+
"q": "1.5.1",
|
|
291
|
+
"randomcolor": "0.5.3",
|
|
292
|
+
"record-replay-req-res-scenario": "~13.1.20",
|
|
293
|
+
"reflect-metadata": "0.1.10",
|
|
294
|
+
"rimraf": "2.6.2",
|
|
295
|
+
"rxjs": "~7.8.0",
|
|
280
296
|
"semver": "6.3.0",
|
|
281
|
-
"simple-git": "
|
|
282
|
-
"sloc": "
|
|
283
|
-
"socket.io": "
|
|
284
|
-
"sort-package-json": "
|
|
285
|
-
"sql.js": "
|
|
286
|
-
"static-columns": "~
|
|
287
|
-
"string-similarity": "
|
|
288
|
-
"sudo-block": "
|
|
289
|
-
"
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
"tnp-
|
|
294
|
-
"tnp-
|
|
295
|
-
"tnp-
|
|
296
|
-
"tnp-
|
|
297
|
-
"tnp-
|
|
298
|
-
"
|
|
299
|
-
"ts-
|
|
300
|
-
"ts-
|
|
301
|
-
"
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"typescript
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
|
|
297
|
+
"simple-git": "1.96.0",
|
|
298
|
+
"sloc": "0.2.0",
|
|
299
|
+
"socket.io": "2.4.1",
|
|
300
|
+
"sort-package-json": "1.11.0",
|
|
301
|
+
"sql.js": "1.8.0",
|
|
302
|
+
"static-columns": "~16.0.5",
|
|
303
|
+
"string-similarity": "4.0.2",
|
|
304
|
+
"sudo-block": "3.0.0",
|
|
305
|
+
"sweetalert2": "11.7.12",
|
|
306
|
+
"systeminformation": "3.45.7",
|
|
307
|
+
"task.js": "0.1.5",
|
|
308
|
+
"threads": "1.7.0",
|
|
309
|
+
"tnp-cli": "~16.0.5",
|
|
310
|
+
"tnp-config": "~16.0.8",
|
|
311
|
+
"tnp-core": "~16.0.10",
|
|
312
|
+
"tnp-db": "~16.0.26",
|
|
313
|
+
"tnp-helpers": "~16.0.6",
|
|
314
|
+
"tnp-models": "~16.0.35",
|
|
315
|
+
"ts-debug": "1.3.0",
|
|
316
|
+
"ts-loader": "2.3.1",
|
|
317
|
+
"ts-node": "10.9.1",
|
|
318
|
+
"tslib": "~2.3.0",
|
|
319
|
+
"turndown": "7.1.2",
|
|
320
|
+
"typeorm": "~0.3.10",
|
|
321
|
+
"typescript": "~5.0.2",
|
|
322
|
+
"typescript-class-helpers": "~16.0.16",
|
|
323
|
+
"underscore": "1.9.1",
|
|
324
|
+
"validator": "9.2.0",
|
|
325
|
+
"video.js": "8.3.0",
|
|
326
|
+
"vpn-split": "~13.1.23",
|
|
327
|
+
"watch": "1.0.2",
|
|
328
|
+
"yup": "1.1.1",
|
|
329
|
+
"zone.js": "~0.13.0"
|
|
330
|
+
},
|
|
331
|
+
"main": "index.js"
|
|
312
332
|
},
|
|
313
333
|
"build": {
|
|
314
|
-
"number":
|
|
315
|
-
"date": "
|
|
316
|
-
"hash": "
|
|
334
|
+
"number": 287,
|
|
335
|
+
"date": "2023-06-20T10:29:48.000Z",
|
|
336
|
+
"hash": "e77a0302c752f0f5cddb2afa83a25baf8a7a389b",
|
|
317
337
|
"options": {}
|
|
318
338
|
},
|
|
319
339
|
"currentProjectName": "ng-talkback",
|
|
320
|
-
"
|
|
340
|
+
"currentProjectGenericName": "ng-talkback",
|
|
321
341
|
"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%22ng-talkback%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\"]}]}",
|
|
322
342
|
"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\"}]}",
|
|
323
343
|
"currentProjectType": "isomorphic-lib",
|
|
324
|
-
"currentFrameworkVersion": "
|
|
344
|
+
"currentFrameworkVersion": "16.0.17",
|
|
325
345
|
"currentProjectIsStrictSite": false,
|
|
326
346
|
"currentProjectIsDependencySite": false,
|
|
327
347
|
"currentProjectIsStatic": false,
|
package/websql/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
let a = 2;
|
|
2
|
+
a++;
|
|
3
|
+
/* */
|
|
4
|
+
/* */
|
|
5
|
+
/* */
|
|
6
|
+
/* */
|
|
7
|
+
/* */
|
|
8
|
+
/* */
|
|
9
|
+
/* */
|
|
10
|
+
/* */
|
|
11
|
+
/* */
|
|
12
|
+
/* */
|
|
13
|
+
/* */
|
|
14
|
+
/* */
|
|
15
|
+
/* */
|
|
16
|
+
/* */
|
|
17
|
+
/* */
|
|
18
|
+
/* */
|
|
19
|
+
/* */
|
|
20
|
+
/* */
|
|
21
|
+
/* */
|
|
22
|
+
/* */
|
|
23
|
+
/* */
|
|
24
|
+
/* */
|
|
25
|
+
/* */
|
|
26
|
+
;
|
|
27
|
+
({}); // @--end-of-file-for-module=ng-talkback lib/index.ts
|
|
28
|
+
export {};
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9uZy10YWxrYmFjay9wcm9qZWN0cy9uZy10YWxrYmFjay9zcmMvbGliL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztBQUNWLENBQUMsRUFBRSxDQUFDO0FBQ0osS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFHSixDQUFDO0FBQUEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLHFEQUFxRCIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB0eXBlIER1bW15ID0gJ2EnO1xubGV0IGEgPSAyO1xuYSsrO1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4gIFxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9bmctdGFsa2JhY2sgbGliL2luZGV4LnRzIl19
|