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/vuepress
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: spinda/vuepress
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Aug 11, 2020

  1. fix($core): serialize calls to App.process

    If source file updates come in too quickly while running the development server, multiple executions of the async App.process method can end up running concurrently and conflict with each other, producing inconsistent data. Fix this by wrapping App.process with a small queuing primitive.
    spinda committed Aug 11, 2020
    Configuration menu
    Copy the full SHA
    d516a6c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2287920 View commit details
    Browse the repository at this point in the history
  3. fix($core): keep createTemp from desyncing webpack

    Calling emptyDirSync every time createTemp is called - i.e, every time App.process is called; i.e., every time source files update - throws off webpack-dev-server, causing it to lose track of the source files and subdirectories. This leads to a variety of sporadic errors and breaks auto-refresh of frontmatter and configuration. Fix this by avoiding emptying temporary directories when we can detect that they were previously initialized by the same instance of the VuePress process. Fixes #1283. Fixes #2233. Fixes #2254. Fixes #2437.
    spinda committed Aug 11, 2020
    Configuration menu
    Copy the full SHA
    f7f18d7 View commit details
    Browse the repository at this point in the history
Loading