File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 6262 run : |
6363 TAG="${GITHUB_REF#refs/tags/}"
6464
65- # --provenance: Fondamentale per OIDC e sicurezza nel 2026
66- # --yes: Evita blocchi interattivi in CI
67- BASE_CMD="npx lerna publish from-package --ignore-scripts --provenance --yes"
65+ BASE_CMD="npx lerna publish from-package --ignore-scripts"
6866
6967 echo "Publishing tag: $TAG via OIDC"
7068
Original file line number Diff line number Diff line change 1313 "yes" : true
1414 }
1515 },
16+ "useNx" : true ,
1617 "$schema" : " node_modules/lerna/schemas/lerna-schema.json"
1718}
Original file line number Diff line number Diff line change @@ -84,9 +84,13 @@ export class ImageDrawer implements IShapeDrawer<ImageParticle> {
8484 return ;
8585 }
8686
87+ const promises : Promise < void > [ ] = [ ] ;
88+
8789 for ( const imageData of options . preload ) {
88- await this . _engine . loadImage ( imageData ) ;
90+ promises . push ( this . _engine . loadImage ( imageData ) ) ;
8991 }
92+
93+ await Promise . all ( promises ) ;
9094 }
9195
9296 loadShape ( particle : ImageParticle ) : void {
You can’t perform that action at this time.
0 commit comments