/
alt3rmann
/
graphql-engine
Обзор
Документация
Войти
/
alt3rmann
/
graphql-engine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
scripts/make/frontend.mk
37 строк
1 KB
Nicolas Beaussart
frontend: switch to yarn berry
05 май 2023, 11:57
05 май 2023, 11:57
8b447a5
Код
Авторство
О чём код?
CONSOLE_CE_ASSETS_PATH = frontend/dist/apps/server-assets-console-ce CONSOLE_EE_ASSETS_PATH = frontend/dist/apps/server-assets-console-ee .PHONY: build-console-ce-assets ## build-console-ce-assets: Build Console assets required for the CE server build-console-ce-assets: $(CONSOLE_CE_ASSETS_PATH) .PHONY: build-console-ee-assets ## build-console-ee-assets: Build Console assets required for the EE server build-console-ee-assets: $(CONSOLE_EE_ASSETS_PATH) # We split the named, phony targets from the path-based targets below so that # `make` has a chance of avoiding rework, by recognizing that the output path # is newer than the inputs. # # We use `touch` to ensure that the path is marked as newer, because modified # timestamps on directories can be quite unreliable. # # `$@` refers to the target. $(CONSOLE_CE_ASSETS_PATH): frontend/node_modules cd frontend && yarn server-build:ce touch $@ $(CONSOLE_EE_ASSETS_PATH): frontend/node_modules cd frontend && yarn server-build:ee touch $@ # Install node_modules if yarn.lock changes frontend/node_modules: frontend/yarn.lock cd frontend && yarn install --immutable touch $@ # Cleanly install node_modules if package.json changes frontend/yarn.lock: frontend/package.json cd frontend && yarn install touch $@