Skip to content

Commit 2007d72

Browse files
committed
move the assets into the vuer module
1 parent 72bc154 commit 2007d72

28 files changed

+5
-6
lines changed

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
include VERSION
22
recursive-include vuer/ *.*
3-
recursive-include client_build/ *.*

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.26-rc2
1+
0.0.26-rc3

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "vuer"
7-
version = "0.0.26-rc2"
7+
version = "0.0.26-rc3"
88
description = ""
99
readme = "README.md"
1010
license = { text = "MIT" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

vuer/server.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -688,9 +688,9 @@ def run(self, kill=None, *args, **kwargs):
688688
self._socket("", self.downlink)
689689

690690
# Serve the client build locally.
691-
self._static("/client", Path(__file__).parent.parent / "client_build", filename="index.html")
692-
self._static("/assets", Path(__file__).parent.parent / "client_build/assets")
693-
self._static("/hands", Path(__file__).parent.parent / "client_build/hands")
691+
self._static("/client", Path(__file__).parent / "client_build", filename="index.html")
692+
self._static("/assets", Path(__file__).parent / "client_build/assets")
693+
self._static("/hands", Path(__file__).parent / "client_build/hands")
694694

695695
# serve local files via /static endpoint
696696
self._static("/static", self.static_root)

0 commit comments

Comments
 (0)