-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated yarn to version 4 * update readme * update docker iamge for CI * create a tmp dir for yarn stuff during asset compilation * CI? * replace deprecated yarn --frozen-lock flag with --immutable * CI? * CI * remove yarn caching from CI * fix CI * add PR feedback * add yarn 4.4.1 to docker.dev image
- Loading branch information
1 parent
2b2469c
commit ede0ecc
Showing
9 changed files
with
15,278 additions
and
11,801 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
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 |
---|---|---|
|
@@ -11,18 +11,13 @@ RUN apt-get update && apt-get install apt-transport-https | |
# add node package source | ||
RUN curl -sL "https://deb.nodesource.com/setup_${VERSION_NODE}" | bash - | ||
|
||
# add yarn package source | ||
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - | ||
|
||
# Install sbt, node & build-essentials | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
build-essential \ | ||
findutils \ | ||
nodejs \ | ||
postgresql-client \ | ||
yarn \ | ||
cmake \ | ||
git \ | ||
libdraco-dev \ | ||
|
@@ -32,3 +27,6 @@ RUN apt-get update \ | |
mesa-utils xvfb libgl1-mesa-dri libglapi-mesa libosmesa6 pkg-config x11proto-xext-dev xserver-xorg-dev libxext-dev libxi-dev \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
# Enable corepack for Node (which will install yarn) | ||
RUN corepack enable && corepack install --global [email protected] |
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 |
---|---|---|
|
@@ -73,7 +73,6 @@ | |
"webpack-cli": "^5.1.4", | ||
"webpack-dev-server": "^5.0.2" | ||
}, | ||
"optionalDependencies": {}, | ||
"scripts": { | ||
"start": "node tools/proxy/proxy.js", | ||
"build": "node --max-old-space-size=4096 node_modules/.bin/webpack --env production", | ||
|
@@ -213,12 +212,6 @@ | |
"url-join": "^4.0.0", | ||
"worker-loader": "^3.0.8" | ||
}, | ||
"resolutions": { | ||
"**/mini-store": "^1.1.0", | ||
"**/redux": "3.7.2", | ||
"**/rc-resize-observer": "^1.4.0", | ||
"**/rc-util": "^5.39.1" | ||
}, | ||
"ava": { | ||
"files": [ | ||
"./public-test/test-bundle/**/*.{js,jsx}" | ||
|
@@ -241,5 +234,6 @@ | |
"frontend/javascripts/test/**/*.*" | ||
], | ||
"reporter": "lcov" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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
Oops, something went wrong.