File tree Expand file tree Collapse file tree 3 files changed +14
-25
lines changed
scripts/benchmark-size/runner Expand file tree Collapse file tree 3 files changed +14
-25
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ export const sizeReport = async (options: SizeReportOptions) => {
87
87
const packageContextToTest = testScope . filter ( ( perTestScope ) => changedPackageNames . includes ( perTestScope . package ) ) ;
88
88
console . info ( `Found ${ packageContextToTest . length } packages in the defined scope have size test scope.` ) ;
89
89
const localRegistryProcess = spawnLocalRegistry ( PORT ) ;
90
+ localRegistryProcess . stdout . pipe ( process . stdout ) ;
90
91
91
92
// Wait for the register to spin up.
92
93
await sleep ( 1000 ) ;
@@ -100,7 +101,7 @@ export const sizeReport = async (options: SizeReportOptions) => {
100
101
packageContext,
101
102
} ) ,
102
103
} ) ) ,
103
- { concurrent : 10 }
104
+ { concurrent : 4 }
104
105
) ;
105
106
try {
106
107
await tasks . run ( ) ;
Original file line number Diff line number Diff line change 8
8
"test" : " exit 0"
9
9
},
10
10
"dependencies" : {
11
- "@rollup/plugin-commonjs" : " ^21 .0.1 " ,
11
+ "@rollup/plugin-commonjs" : " ^22 .0.0 " ,
12
12
"@rollup/plugin-json" : " ^4.1.0" ,
13
- "@rollup/plugin-node-resolve" : " ^13.0.6 " ,
13
+ "@rollup/plugin-node-resolve" : " ^13.3.0 " ,
14
14
"@types/execa" : " ^2.0.0" ,
15
15
"esbuild" : " latest" ,
16
16
"execa" : " ^5.1.1" ,
17
- "fs-extra" : " ^10.0 .0" ,
17
+ "fs-extra" : " ^10.1 .0" ,
18
18
"handlebars" : " ^4.7.7" ,
19
- "listr2" : " ^3.13.3 " ,
19
+ "listr2" : " ^4.0.5 " ,
20
20
"rollup" : " latest" ,
21
21
"rollup-plugin-terser" : " ^7.0.2" ,
22
- "semver" : " ^7.3.5 " ,
22
+ "semver" : " ^7.3.7 " ,
23
23
"webpack" : " latest"
24
24
},
25
25
"author" : " " ,
Original file line number Diff line number Diff line change 18
18
# by default packages are ordercer ascendant (asc|desc)
19
19
# sort_packages: asc
20
20
21
- auth :
22
- htpasswd :
23
- file : ./htpasswd
24
- algorithm : bcrypt
25
- # Maximum amount of users allowed to register, defaults to "+inf".
26
- # You can set this to -1 to disable registration.
27
- # max_users: 1000
21
+ # auth:
22
+ # htpasswd:
23
+ # file: ./htpasswd
24
+ # algorithm: bcrypt
25
+ # # Maximum amount of users allowed to register, defaults to "+inf".
26
+ # # You can set this to -1 to disable registration.
27
+ # max_users: 1000
28
28
29
29
# a list of other known repositories we can talk to
30
30
uplinks :
@@ -33,18 +33,10 @@ uplinks:
33
33
34
34
packages :
35
35
" @aws-sdk/* " :
36
- # scoped packages
37
36
access : $all
38
37
publish : $all
39
38
unpublish : $all
40
39
proxy : npmjs
41
- " @*/* " :
42
- # scoped packages
43
- access : $all
44
- publish : $authenticated
45
- unpublish : $authenticated
46
- proxy : npmjs
47
-
48
40
" ** " :
49
41
# allow all users (including non-authenticated users) to read and
50
42
# publish all packages
@@ -67,10 +59,6 @@ packages:
67
59
server :
68
60
keepAliveTimeout : 60
69
61
70
- middlewares :
71
- audit :
72
- enabled : true
73
-
74
62
# log settings
75
63
logs :
76
64
- { type: stdout, format: pretty, level: http }
You can’t perform that action at this time.
0 commit comments