diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..b26d84b --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,27 @@ +version: 2 + +jobs: + build: + docker: + - image: vuejs/ci + working_directory: ~/repo + steps: + - checkout + - restore_cache: + keys: + - dependency-cache-{{ checksum "package.json" }} + - dependency-cache- + - run: npm install + - run: npm run test + - run: npm run lint + - save_cache: + key: dependency-cache-{{ checksum "package.json" }} + paths: + - node_modules + + +workflows: + version: 2 + test: + jobs: + - build diff --git a/README-CN.md b/README-CN.md index 48b7828..c90c218 100644 --- a/README-CN.md +++ b/README-CN.md @@ -2,11 +2,11 @@ [English](README.md) | 简体中文 -将 [RxJS v6](https://github.com/ReactiveX/rxjs) 集成到 Vue.js。 +将 [RxJS v6+](https://github.com/ReactiveX/rxjs) 集成到 Vue.js。 > **相比 5.0 的不兼容变更** > -> - vue-rx v6 现在默认只对 RxJS V6 生效。如果你想继续使用 RxJS v5 风格的代码,安装 `rxjs-compat`。 +> - vue-rx v6 现在默认只对 RxJS V6+ 生效。如果你想继续使用 RxJS v5 风格的代码,安装 `rxjs-compat`。 ### 安装 diff --git a/README.md b/README.md index f8143c6..6d18b61 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ English | [简体中文](README-CN.md) -[RxJS v6](https://github.com/ReactiveX/rxjs) integration for Vue.js. +[RxJS v6+](https://github.com/ReactiveX/rxjs) integration for Vue.js. > **BREAKING CHANGES from 5.0** -> - vue-rx v6 now only works with RxJS v6 by default. If you want to keep using RxJS v5 style code, install `rxjs-compat`. +> - vue-rx v6 now only works with RxJS v6+ by default. If you want to keep using RxJS v5 style code, install `rxjs-compat`. ### Installation diff --git a/circle.yml b/circle.yml deleted file mode 100644 index 7fa19bc..0000000 --- a/circle.yml +++ /dev/null @@ -1,3 +0,0 @@ -machine: - node: - version: 8 diff --git a/example/wiki-search.html b/example/wiki-search.html index a0cbd58..ae36aa9 100644 --- a/example/wiki-search.html +++ b/example/wiki-search.html @@ -1,4 +1,3 @@ - @@ -23,18 +22,14 @@

{{ results.term }}