Skip to content

Commit bfd3dc1

Browse files
committed
fix v-stream data update on custom element
2 parents 6c0d09a + 3291813 commit bfd3dc1

28 files changed

+4316
-5933
lines changed

.circleci/config.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: vuejs/ci
7+
working_directory: ~/repo
8+
steps:
9+
- checkout
10+
- restore_cache:
11+
keys:
12+
- dependency-cache-{{ checksum "package.json" }}
13+
- dependency-cache-
14+
- run: npm install
15+
- run: npm run test
16+
- run: npm run lint
17+
- save_cache:
18+
key: dependency-cache-{{ checksum "package.json" }}
19+
paths:
20+
- node_modules
21+
22+
23+
workflows:
24+
version: 2
25+
test:
26+
jobs:
27+
- build

0 commit comments

Comments
 (0)