From 9ca50a1c4d04f3e1f9efd97ba51668c51375ab6a Mon Sep 17 00:00:00 2001 From: JelleBuning <37436672+JelleBuning@users.noreply.github.com> Date: Thu, 6 Apr 2023 10:45:51 +0200 Subject: [PATCH 1/3] Update _index.en.md --- content/dev/build/web/_index.en.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/dev/build/web/_index.en.md b/content/dev/build/web/_index.en.md index c80f333..b58a31e 100644 --- a/content/dev/build/web/_index.en.md +++ b/content/dev/build/web/_index.en.md @@ -14,6 +14,7 @@ cd flutter/web/js # install protoc first http://google.github.io/proto-lens/installing-protoc.html npm install ts-proto # only works with vite<=2.8, see: https://github.com/vitejs/vite/blob/main/docs/guide/build.md#chunking-strategy +npm install vite@2.8 yarn build From a488e27bfff2d2042da07de37cd9c5234703b0ca Mon Sep 17 00:00:00 2001 From: JelleBuning <37436672+JelleBuning@users.noreply.github.com> Date: Thu, 6 Apr 2023 11:23:16 +0200 Subject: [PATCH 2/3] Update _index.en.md --- content/dev/build/web/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/dev/build/web/_index.en.md b/content/dev/build/web/_index.en.md index b58a31e..2a345e4 100644 --- a/content/dev/build/web/_index.en.md +++ b/content/dev/build/web/_index.en.md @@ -15,7 +15,7 @@ cd flutter/web/js npm install ts-proto # only works with vite<=2.8, see: https://github.com/vitejs/vite/blob/main/docs/guide/build.md#chunking-strategy npm install vite@2.8 - +npm install --global yarn yarn build cd .. From 1c2b2fe5c6ccb8cab2bdc725ada9ee2054c0f5cf Mon Sep 17 00:00:00 2001 From: JelleBuning <37436672+JelleBuning@users.noreply.github.com> Date: Thu, 6 Apr 2023 12:41:48 +0200 Subject: [PATCH 3/3] Update _index.en.md --- content/dev/build/web/_index.en.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/dev/build/web/_index.en.md b/content/dev/build/web/_index.en.md index 2a345e4..ae62e29 100644 --- a/content/dev/build/web/_index.en.md +++ b/content/dev/build/web/_index.en.md @@ -15,7 +15,12 @@ cd flutter/web/js npm install ts-proto # only works with vite<=2.8, see: https://github.com/vitejs/vite/blob/main/docs/guide/build.md#chunking-strategy npm install vite@2.8 -npm install --global yarn + +# required for yarn build +npm install yarn -g +npm install typescript -g +npm install protoc -g + yarn build cd ..