Skip to content

Commit 3deae4b

Browse files
devversionjosephperrott
authored andcommitted
build: use minified umd bundles for size plugin (#14177)
1 parent af9a15f commit 3deae4b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@ jobs:
225225
- run:
226226
name: Prepare CDK artifacts for publish.
227227
command: |
228-
mkdir -p /tmp/cdk-umd-artifacts
229-
cp dist/releases/cdk/bundles/*.umd.js /tmp/cdk-umd-artifacts
228+
mkdir -p /tmp/cdk-umd-minified-bundles
229+
cp dist/releases/cdk/bundles/*.umd.min.js /tmp/cdk-umd-minified-bundles
230230
231231
# Publish bundle artifacts which will be used to calculate the size change.
232232
# Note: Make sure that the size plugin from the Angular robot fetches the artifacts
@@ -236,10 +236,10 @@ jobs:
236236
# artifacts from CircleCI. See:
237237
# https://github.com/angular/github-robot/blob/master/functions/src/plugins/size.ts#L392-L394
238238
- store_artifacts:
239-
path: dist/releases/material/bundles/material.umd.js
240-
destination: /angular_material/material_release_output/material.umd.js
239+
path: dist/releases/material/bundles/material.umd.min.js
240+
destination: /angular_material/material_release_output/material.umd.min.js
241241
- store_artifacts:
242-
path: /tmp/cdk-umd-artifacts
242+
path: /tmp/cdk-umd-minified-bundles
243243
destination: /angular_material/cdk_release_output/
244244

245245
- *save_cache

0 commit comments

Comments
 (0)