-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10178 from tamird/ui-yarn
*: switch from npm to yarn
- Loading branch information
Showing
18 changed files
with
5,237 additions
and
2,497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
|
||
# NPM | ||
node_modules | ||
npm.installed | ||
yarn.installed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
FROM golang:1.7.1 | ||
FROM golang:1.7.3 | ||
|
||
MAINTAINER Peter Mattis <[email protected]> | ||
|
||
RUN \ | ||
apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3 && \ | ||
echo 'deb http://dl.yarnpkg.com/debian/ stable main' | tee /etc/apt/sources.list.d/yarn.list | ||
|
||
# nodejs is used to build and test the UI. | ||
# bzip2 and fontconfig are used by phantomjs-prebuilt to test the UI. | ||
# iptables is used in the acceptance tests' partition nemesis. | ||
# parallel is used to speed up `make check`. | ||
# yarn is the dependency manager for the UI, as an alternative to npm. | ||
RUN \ | ||
curl --silent --location https://deb.nodesource.com/setup_6.x | bash - && \ | ||
apt-get dist-upgrade -y && \ | ||
|
@@ -14,8 +18,8 @@ RUN \ | |
fontconfig \ | ||
iptables \ | ||
nodejs \ | ||
parallel \ | ||
unzip \ | ||
yarn \ | ||
&& \ | ||
apt-get clean autoclean && \ | ||
apt-get autoremove -y && \ | ||
|
@@ -24,10 +28,10 @@ RUN \ | |
rm -rf /tmp/* | ||
|
||
RUN \ | ||
cd /usr/local/bin && \ | ||
curl -O --silent https://releases.hashicorp.com/terraform/0.7.3/terraform_0.7.3_linux_amd64.zip && \ | ||
unzip terraform_0.7.3_linux_amd64.zip && \ | ||
rm terraform_0.7.3_linux_amd64.zip | ||
cd /usr/local/bin && \ | ||
curl --silent https://releases.hashicorp.com/terraform/0.7.7/terraform_0.7.7_linux_amd64.zip -o terraform_linux_amd64.zip && \ | ||
unzip terraform_linux_amd64.zip && \ | ||
rm terraform_linux_amd64.zip | ||
|
||
ENV PATH=/opt/backtrace/bin:/third_party/llvm-build/Release+Asserts/bin:$PATH | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM karalabe/xgo-1.7.1 | ||
FROM karalabe/xgo-1.7.3 | ||
|
||
MAINTAINER Tamir Duberstein <[email protected]> | ||
|
||
|
Oops, something went wrong.