Skip to content

Commit 47a366e

Browse files
committed
fix: try to fix missing dep issue
1 parent d7ef594 commit 47a366e

File tree

2 files changed

+296
-247
lines changed

2 files changed

+296
-247
lines changed

.circleci/config.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,15 @@ jobs:
66

77
steps:
88
- checkout
9-
- restore_cache:
10-
name: Restore Yarn Package Cache
11-
keys:
12-
- v1-yarn-packages-{{ checksum "yarn.lock" }}
13-
149
- run:
1510
name: Setup NPM Token
1611
command: |
1712
yarn config set registry "https://registry.npmjs.org/"
1813
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
1914
echo "registry=https://registry.npmjs.org/" >> .npmrc
20-
2115
- run:
2216
name: Install Dependencies
2317
command: yarn install --frozen-lockfile
24-
- save_cache:
25-
name: Save Yarn Package Cache
26-
key: v1-yarn-packages-{{ checksum "yarn.lock" }}
27-
paths:
28-
- ~/.cache/yarn
29-
3018
- run:
3119
name: build
3220
command: yarn vscode:prepublish

0 commit comments

Comments
 (0)