Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vuejs/vue
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.5.1
Choose a base ref
...
head repository: vuejs/vue
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.5.2
Choose a head ref
  • 6 commits
  • 24 files changed
  • 1 contributor

Commits on Oct 13, 2017

  1. ci: adjust cache

    yyx990803 committed Oct 13, 2017
    Copy the full SHA
    6658b81 View commit details
  2. Copy the full SHA
    4e0c485 View commit details
  3. chore: fix flow

    yyx990803 committed Oct 13, 2017
    Copy the full SHA
    a11d6f3 View commit details
  4. chore: coverage

    yyx990803 committed Oct 13, 2017
    Copy the full SHA
    069c82b View commit details
  5. build: build 2.5.2

    yyx990803 committed Oct 13, 2017
    Copy the full SHA
    fd0c4f5 View commit details
  6. build: release 2.5.2

    yyx990803 committed Oct 13, 2017
    Copy the full SHA
    471de4a View commit details
11 changes: 1 addition & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -15,21 +15,12 @@ jobs:
- v1-vue-{{ .Branch }}-{{ checksum "package-lock.json" }}
- v1-vue-{{ .Branch }}-
- v1-vue-
- restore_cache:
keys:
- v1-vue-ssr-{{ .Branch }}-{{ checksum "packages/vue-server-renderer/package-lock.json" }}
- v1-vue-ssr-{{ .Branch }}-
- v1-vue-ssr-
- run: npm install
- run: cd packages/vue-server-renderer && npm install
- run: cd packages/vue-server-renderer && npm install vue
- save_cache:
key: v1-vue-{{ .Branch }}-{{ checksum "package-lock.json" }}
paths:
- node_modules/
- save_cache:
key: v1-vue-ssr-{{ .Branch }}-{{ checksum "packages/vue-server-renderer/package-lock.json" }}
paths:
- packages/vue-server-renderer/node_modules/
- persist_to_workspace:
root: ~/project
paths:
Loading