diff --git a/.circleci/config.yml b/.circleci/config.yml index 44be5c7b..0ff35315 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,5 +25,11 @@ jobs: name: Flow command: yarn flow - run: - name: Compile - command: yarn compile + name: Build + command: yarn dist:dir + - run: + name: Generate build stats + command: "du -h dist | sort -h > /tmp/build-stats.txt" + - store_artifacts: + path: /tmp/build-stats.txt + destination: build-stats.txt