Move deno2 folder to src (#277)

This commit is contained in:
Tristan Marion 2018-06-22 15:30:35 +02:00 committed by Ryan Dahl
parent 86354a29a4
commit 3b595253a2
41 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ branches:
cache: cache:
ccache: true ccache: true
directories: directories:
- deno2/js/node_modules/ - src/js/node_modules/
- $DEPOT_TOOLS_PATH - $DEPOT_TOOLS_PATH
- $BUILD_PATH - $BUILD_PATH
env: env:
@ -19,7 +19,7 @@ before_install: |
fi fi
install: install:
- export PATH=$PATH:$DEPOT_TOOLS_PATH - export PATH=$PATH:$DEPOT_TOOLS_PATH
- cd deno2 - cd src
# Sync dependencies. # Sync dependencies.
# TODO(ry) These sync steps are very terrible and only here temporarily. # TODO(ry) These sync steps are very terrible and only here temporarily.
# A single deno_deps git submodule should be created which contains V8, # A single deno_deps git submodule should be created which contains V8,

View file

@ -74,7 +74,7 @@ includes submitting trivial PRs (like improving README build instructions).
First install the javascript deps. First install the javascript deps.
cd deno2 cd src
cd js; yarn install cd js; yarn install

View file

View file