We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aea877 commit bd81233Copy full SHA for bd81233
.gitignore
@@ -2,3 +2,4 @@
2
node_modules
3
lib
4
*.log
5
+.yarnclean
circle.yml
@@ -6,8 +6,14 @@ jobs:
6
- image: circleci/node:10.2.1-stretch
7
steps:
8
- checkout
9
- - run: yarn --frozen-lockfile
10
- - run: yarn build
+ - run: yarn --frozen-lockfile --link-duplicates
+ - run: yarn --production --force --ignore-scripts --prefer-offline
11
+ - run: yarn autoclean --init
12
+ - run: echo *.ts >> .yarnclean
13
+ - run: echo *.ts.map >> .yarnclean
14
+ - run: echo *.spec.* >> .yarnclean
15
+ - run: yarn autoclean --force
16
+ - run: yarn cache clean
17
- persist_to_workspace:
18
root: ../
19
paths:
0 commit comments