@squiz/db-lib 1.35.1-alpha.3 → 1.35.1-alpha.30
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/.npm/_logs/{2023-06-02T03_11_15_910Z-debug-0.log → 2023-06-15T05_23_02_188Z-debug-0.log}
RENAMED
|
@@ -4,34 +4,34 @@
|
|
|
4
4
|
3 timing npm:load:whichnode Completed in 1ms
|
|
5
5
|
4 timing config:load:defaults Completed in 2ms
|
|
6
6
|
5 timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 0ms
|
|
7
|
-
6 timing config:load:builtin Completed in
|
|
7
|
+
6 timing config:load:builtin Completed in 1ms
|
|
8
8
|
7 timing config:load:cli Completed in 2ms
|
|
9
|
-
8 timing config:load:env Completed in
|
|
9
|
+
8 timing config:load:env Completed in 2ms
|
|
10
10
|
9 info found workspace root at /builds/developer-experience/cmp
|
|
11
|
-
10 timing config:load:file:/builds/developer-experience/cmp/.npmrc Completed in
|
|
12
|
-
11 timing config:load:project Completed in
|
|
11
|
+
10 timing config:load:file:/builds/developer-experience/cmp/.npmrc Completed in 0ms
|
|
12
|
+
11 timing config:load:project Completed in 22ms
|
|
13
13
|
12 timing config:load:file:/root/.npmrc Completed in 1ms
|
|
14
14
|
13 timing config:load:user Completed in 1ms
|
|
15
|
-
14 timing config:load:file:/usr/local/etc/npmrc Completed in
|
|
16
|
-
15 timing config:load:global Completed in
|
|
15
|
+
14 timing config:load:file:/usr/local/etc/npmrc Completed in 1ms
|
|
16
|
+
15 timing config:load:global Completed in 1ms
|
|
17
17
|
16 timing config:load:setEnvs Completed in 1ms
|
|
18
|
-
17 timing config:load Completed in
|
|
19
|
-
18 timing npm:load:configload Completed in
|
|
18
|
+
17 timing config:load Completed in 32ms
|
|
19
|
+
18 timing npm:load:configload Completed in 32ms
|
|
20
20
|
19 timing npm:load:mkdirpcache Completed in 0ms
|
|
21
|
-
20 timing npm:load:mkdirplogs Completed in
|
|
21
|
+
20 timing npm:load:mkdirplogs Completed in 1ms
|
|
22
22
|
21 verbose title npm run compile
|
|
23
23
|
22 verbose argv "run" "compile" "--"
|
|
24
24
|
23 timing npm:load:setTitle Completed in 1ms
|
|
25
25
|
24 timing config:load:flatten Completed in 5ms
|
|
26
26
|
25 timing npm:load:display Completed in 6ms
|
|
27
|
-
26 verbose logfile logs-max:10 dir:/builds/developer-experience/cmp/packages/db-lib/.npm/_logs/2023-06-
|
|
28
|
-
27 verbose logfile /builds/developer-experience/cmp/packages/db-lib/.npm/_logs/2023-06-
|
|
27
|
+
26 verbose logfile logs-max:10 dir:/builds/developer-experience/cmp/packages/db-lib/.npm/_logs/2023-06-15T05_23_02_188Z-
|
|
28
|
+
27 verbose logfile /builds/developer-experience/cmp/packages/db-lib/.npm/_logs/2023-06-15T05_23_02_188Z-debug-0.log
|
|
29
29
|
28 timing npm:load:logFile Completed in 3ms
|
|
30
|
-
29 timing npm:load:timers Completed in
|
|
30
|
+
29 timing npm:load:timers Completed in 0ms
|
|
31
31
|
30 timing npm:load:configScope Completed in 0ms
|
|
32
|
-
31 timing npm:load Completed in
|
|
32
|
+
31 timing npm:load Completed in 46ms
|
|
33
33
|
32 silly logfile done cleaning log files
|
|
34
|
-
33 timing command:run Completed in
|
|
34
|
+
33 timing command:run Completed in 3518ms
|
|
35
35
|
34 verbose exit 0
|
|
36
|
-
35 timing npm Completed in
|
|
36
|
+
35 timing npm Completed in 3575ms
|
|
37
37
|
36 info ok
|
package/lib/index.js
CHANGED
|
@@ -49409,6 +49409,10 @@ var require_CloudflareApiKeyService = __commonJS({
|
|
|
49409
49409
|
}, REFRESH_TIMER);
|
|
49410
49410
|
}
|
|
49411
49411
|
}
|
|
49412
|
+
// temporary method, to be removed when DXP auth is properly implemented
|
|
49413
|
+
getMatrixKeys() {
|
|
49414
|
+
return validKeys["matrix-keys"];
|
|
49415
|
+
}
|
|
49412
49416
|
};
|
|
49413
49417
|
exports2.CloudflareApiKeyService = CloudflareApiKeyService;
|
|
49414
49418
|
}
|
|
@@ -49427,6 +49431,10 @@ var require_DevelopmentApiKeyService = __commonJS({
|
|
|
49427
49431
|
matrixKeyIsValid() {
|
|
49428
49432
|
return true;
|
|
49429
49433
|
}
|
|
49434
|
+
// temporary method, to be removed when DXP auth is properly implemented
|
|
49435
|
+
getMatrixKeys() {
|
|
49436
|
+
return ["matrix-api-key"];
|
|
49437
|
+
}
|
|
49430
49438
|
};
|
|
49431
49439
|
exports2.DevelopmentApiKeyService = DevelopmentApiKeyService;
|
|
49432
49440
|
}
|