1. 09 12月, 2021 1 次提交
    • A
      Fix relative paths (#4594) · 4b4ec378
      Asher 提交于
      * Add tests for relativeRoot
      
      * Remove path.posix.join
      
      Since this is for file system paths it feels incorrect to use it on
      URL paths as they are different in many ways.
      
      * Rewrite cookie path logic
      
      Before we relied on the client to resolve the base given to it by the
      backend against the path.
      
      Instead have the client pass that information along so we can resolve it
      on the backend.  This means the client has to do less work.
      
      * Do not remove out directory before watch
      
      This is re-used for incremental compilation.
      
      Also remove del since that was the only use (and we can use fs.rmdir in
      the future if we need something like this).
      
      * Remove unused function resolveBase
      4b4ec378
  2. 08 12月, 2021 1 次提交
    • A
      Remove excessive reloading before VS Code is ready (#4589) · c3eb9b80
      Asher 提交于
      The watch script was reloading the web server after every extension
      compilation which is not necessary plus VS Code will not even be ready
      at that point anyway.
      
      Instead restart when the main compilation is finished.  The string to
      match with includes a "with" because otherwise it would match "Finished
      compilation extensions" which is not the main compilation task where we
      actually need to restart the web server.
      
      I also replaced this.log with console.log because the former does not
      include a newline and it appears we want newlines with all
      these (otherwise the next log starts on the same line which looks odd).
      
      I removed the cache clean as well because the cache is meant to stay
      there to speed up builds.
      c3eb9b80
  3. 20 11月, 2021 1 次提交
  4. 17 11月, 2021 1 次提交
    • A
      Fix watcher not restarting code-server on VS Code compilation (#4520) · cd26f84b
      Asher 提交于
      The "Starting watch-client" string no longer appears in the latest build
      output.  We could look for "Finished compilation with" to avoid
      restarting when other tasks restart (since they also include the name
      i.e. "Finished compilation extensions with 0 errors") but I figure we
      might as well restart code-server when any compilation task completes in
      case other tasks include changes that need to be reloaded.
      cd26f84b
  5. 01 10月, 2021 1 次提交
  6. 16 9月, 2021 1 次提交
  7. 30 6月, 2021 1 次提交
    • A
      Move onLine to utilities · 49c44818
      Asher 提交于
      This way it can be used by the tests when spawning code-server on a
      random port to look for the address.
      49c44818
  8. 29 6月, 2021 1 次提交
  9. 19 8月, 2020 1 次提交
  10. 14 8月, 2020 2 次提交
  11. 01 8月, 2020 2 次提交
  12. 28 7月, 2020 1 次提交
  13. 07 5月, 2020 1 次提交