forked from neos/neos-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
158 lines (120 loc) · 4.69 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
################################################################################
#
# 888b 88 88888888888 ,ad8888ba, ad88888ba
# 8888b 88 88 d8"' `"8b d8" "8b
# 88 `8b 88 88 d8' `8b y8,
# 88 `8b 88 88aaaaa 88 88 `y8aaaaa,
# 88 `8b 88 88""""" 88 88 `"""""8b,
# 88 `8b 88 88 y8, ,8p `8b
# 88 `8888 88 y8a. .a8p y8a a8p
# 88 `888 88888888888 `"Y8888Y"' "Y88888P"
#
# <Makefile>
#
# 88 88 88
# 88 88 88
# 88 88 88
# 88 88 88
# 88 88 88
# 88 88 88
# Y8a. .a8P 88
# `"Y8888Y"' 88
#
#
################################################################################
################################################################################
# Make ALL targets phony targets (Rebuild every time)
################################################################################
.PHONY: check-requirements install setup \
build build-watch build-watch-poll build-production \
storybook test test-e2e lint lint-js lint-editorconfig \
called-with-version bump-version publish-npm \
clean
################################################################################
# Variables
################################################################################
# Add lerna alias as there are currently some MacOS problems
# and putting it into the $PATH is simply not enough
lerna = ./node_modules/.bin/lerna
editorconfigChecker = ./node_modules/.bin/editorconfig-checker
webpack = ./node_modules/.bin/webpack
crossenv = ./node_modules/.bin/crossenv
################################################################################
# Setup
################################################################################
check-requirements:
@which yarn &>/dev/null || \
(echo yarn is not installed: https://github.com/yarnpkg/yarn && false)
install:
yarn install
setup: check-requirements install build
@echo Please remember to set frontendDevelopmentMode \
to true in your Settings.yaml.
@echo
@echo 'Neos:'
@echo ' Neos:'
@echo ' Ui:'
@echo ' frontendDevelopmentMode: true'
################################################################################
# Builds
################################################################################
# TODO: figure out how to pass a parameter to other targets to reduce redundancy
build-subpackages:
$(lerna) run build --concurrency 1
build:
make build-subpackages
NEOS_BUILD_ROOT=$(shell pwd) $(webpack) --progress --colors
build-watch:
NEOS_BUILD_ROOT=$(shell pwd) $(webpack) --progress --colors --watch
build-watch-poll:
NEOS_BUILD_ROOT=$(shell pwd) $(webpack) \
--progress --colors --watch-poll --watch
# clean anything before building for production just to be sure
build-production:
make build-subpackages
$(cross-env) NODE_ENV=production NEOS_BUILD_ROOT=$(shell pwd) \
$(webpack) --progress --colors
################################################################################
# Code Quality
################################################################################
storybook:
@mkdir -p ./packages/react-ui-components/node_modules/@neos-project/ && \
ln -s ../../../build-essentials/src \
./packages/react-ui-components/node_modules/@neos-project/build-essentials
$(lerna) run --scope @neos-project/react-ui-components start
test:
$(lerna) run test --concurrency 1
test-e2e:
yarn run testcafe chrome:headless Tests/IntegrationTests/* \
--selector-timeout=10000 --assertion-timeout=30000
lint: lint-js lint-editorconfig
lint-js:
$(lerna) run lint --concurrency 1
lint-editorconfig:
$(editorconfigChecker) \
--exclude-regexp 'LICENSE|\.vanilla\-css$$|banner\.js$$' \
--exclude-pattern \
'./{README.md,**/*.snap,**/*{fontAwesome,Resources,dist}/**/*}'
################################################################################
# Releasing
################################################################################
called-with-version:
ifeq ($(VERSION),)
@echo No version information given.
@echo Please run this command like this:
@echo VERSION=1.0.0 make release
@false
endif
bump-version: called-with-version
$(lerna) publish \
--skip-git --exact --repo-version=$(VERSION) \
--yes --force-publish --skip-npm
./Build/createVersionFile.sh
publish-npm: called-with-version
$(lerna) publish --skip-git --exact --repo-version=$(VERSION) \
--yes --force-publish
################################################################################
# Misc
################################################################################
clean:
rm -Rf node_modules; rm -rf packages/*/node_modules