chore: reorganize symlinks

resolves #332
This commit is contained in:
Yoshiya Hinosawa 2018-07-06 14:11:15 +09:00 committed by Ryan Dahl
parent 31eda28a64
commit c1f430966a
7 changed files with 6 additions and 5 deletions

View File

@ -101,7 +101,7 @@ run_node("bundle") {
sources = [
"js/main.ts",
"js/msg_generated.ts",
"js/package.json", # The `browserslist` field controls Babel behavior.
"package.json", # The `browserslist` field controls Babel behavior.
]
outputs = [
out_dir + "main.js",

View File

@ -1 +0,0 @@
../third_party/node_modules

View File

@ -26,8 +26,9 @@ def symlink(target, name, target_is_dir=False):
os.symlink(target, name)
js_path = os.path.dirname(os.path.realpath(__file__))
target_abs = os.path.join(js_path, "node_modules")
root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
third_party_path = os.path.join(root_path, "third_party")
target_abs = os.path.join(third_party_path, "node_modules")
target_rel = os.path.relpath(target_abs)
if not os.path.exists("node_modules"):

1
node_modules Symbolic link
View File

@ -0,0 +1 @@
third_party/node_modules

View File

@ -1 +1 @@
../js/package.json
../package.json