@@ -16,106 +16,106 @@ install: package.json ## install dependencies
16
16
run : run-simple
17
17
18
18
run-simple : # # run the simple example
19
- @yarn -s run-simple
19
+ @yarn run-simple
20
20
21
21
run-no-code : # # run the no-code example
22
- @yarn -s run-no-code
22
+ @yarn run-no-code
23
23
24
24
run-tutorial : # # run the tutorial example
25
- @yarn -s run-tutorial
25
+ @yarn run-tutorial
26
26
27
27
run-demo : # # run the ecommerce example
28
- @yarn -s run-demo
28
+ @yarn run-demo
29
29
30
30
run-demo-watch : # # run the ecommerce example and watch changes in ra dependencies
31
- @yarn -s run-demo-watch
31
+ @yarn run-demo-watch
32
32
33
33
build-demo : # # compile the ecommerce example to static js
34
- @yarn -s build-demo
34
+ @yarn build-demo
35
35
36
36
run-graphql-demo : # # run the ecommerce example with a graphql backend
37
- @yarn -s run-graphql-demo
37
+ @yarn run-graphql-demo
38
38
39
39
run-graphql-demo-watch : # # run the ecommerce example with a graphql backend and watch changes in ra dependencies
40
- @yarn -s run-graphql-demo-watch
40
+ @yarn run-graphql-demo-watch
41
41
42
42
run-crm : # # run the crm example
43
- @yarn -s run-crm
43
+ @yarn run-crm
44
44
45
45
build-crm : # # run the crm example
46
- @yarn -s build-crm
46
+ @yarn build-crm
47
47
48
48
build-ra-core :
49
49
@echo " Transpiling ra-core files..." ;
50
- @cd ./packages/ra-core && yarn -s build
50
+ @cd ./packages/ra-core && yarn build
51
51
52
52
build-ra-test :
53
53
@echo " Transpiling ra-test files..." ;
54
- @cd ./packages/ra-test && yarn -s build
54
+ @cd ./packages/ra-test && yarn build
55
55
56
56
build-ra-ui-materialui :
57
57
@echo " Transpiling ra-ui-materialui files..." ;
58
- @cd ./packages/ra-ui-materialui && yarn -s build
58
+ @cd ./packages/ra-ui-materialui && yarn build
59
59
60
60
build-ra-language-english :
61
61
@echo " Transpiling ra-language-english files..." ;
62
- @cd ./packages/ra-language-english && yarn -s build
62
+ @cd ./packages/ra-language-english && yarn build
63
63
64
64
build-ra-language-french :
65
65
@echo " Transpiling ra-language-french files..." ;
66
- @cd ./packages/ra-language-french && yarn -s build
66
+ @cd ./packages/ra-language-french && yarn build
67
67
68
68
build-react-admin :
69
69
@echo " Transpiling react-admin files..." ;
70
70
@rm -rf ./packages/react-admin/docs
71
- @cd ./packages/react-admin && yarn -s build
71
+ @cd ./packages/react-admin && yarn build
72
72
@mkdir packages/react-admin/docs
73
73
@cp docs/* .md packages/react-admin/docs
74
74
75
75
build-ra-data-fakerest :
76
76
@echo " Transpiling ra-data-fakerest files..." ;
77
- @cd ./packages/ra-data-fakerest && yarn -s build
77
+ @cd ./packages/ra-data-fakerest && yarn build
78
78
79
79
build-ra-data-json-server :
80
80
@echo " Transpiling ra-data-json-server files..." ;
81
- @cd ./packages/ra-data-json-server && yarn -s build
81
+ @cd ./packages/ra-data-json-server && yarn build
82
82
83
83
build-ra-data-localstorage :
84
84
@echo " Transpiling ra-data-localstorage files..." ;
85
- @cd ./packages/ra-data-localstorage && yarn -s build
85
+ @cd ./packages/ra-data-localstorage && yarn build
86
86
87
87
build-ra-data-simple-rest :
88
88
@echo " Transpiling ra-data-simple-rest files..." ;
89
- @cd ./packages/ra-data-simple-rest && yarn -s build
89
+ @cd ./packages/ra-data-simple-rest && yarn build
90
90
91
91
build-ra-data-graphql :
92
92
@echo " Transpiling ra-data-graphql files..." ;
93
- @cd ./packages/ra-data-graphql && yarn -s build
93
+ @cd ./packages/ra-data-graphql && yarn build
94
94
95
95
build-ra-data-graphql-simple :
96
96
@echo " Transpiling ra-data-graphql-simple files..." ;
97
- @cd ./packages/ra-data-graphql-simple && yarn -s build
97
+ @cd ./packages/ra-data-graphql-simple && yarn build
98
98
99
99
build-ra-i18n-polyglot :
100
100
@echo " Transpiling ra-i18n-polyglot files..." ;
101
- @cd ./packages/ra-i18n-polyglot && yarn -s build
101
+ @cd ./packages/ra-i18n-polyglot && yarn build
102
102
103
103
build-ra-input-rich-text :
104
104
@echo " Transpiling ra-input-rich-text files..." ;
105
- @cd ./packages/ra-input-rich-text && yarn -s build
105
+ @cd ./packages/ra-input-rich-text && yarn build
106
106
107
107
build-ra-no-code :
108
108
@echo " Transpiling ra-no-code files..." ;
109
- @cd ./packages/ra-no-code && yarn -s build
109
+ @cd ./packages/ra-no-code && yarn build
110
110
111
111
build-data-generator :
112
112
@echo " Transpiling data-generator files..." ;
113
- @cd ./examples/data-generator && yarn -s build
113
+ @cd ./examples/data-generator && yarn build
114
114
115
115
build : build-ra-core build-ra-test build-ra-ui-materialui build-ra-data-fakerest build-ra-data-json-server build-ra-data-localstorage build-ra-data-simple-rest build-ra-data-graphql build-ra-data-graphql-simple build-ra-i18n-polyglot build-ra-input-rich-text build-data-generator build-ra-language-english build-ra-language-french build-react-admin build-ra-no-code # # compile ES6 files to JS
116
116
117
117
doc : # # compile doc as html and launch doc web server
118
- @yarn -s doc
118
+ @yarn doc
119
119
120
120
serve-github-pages : # # Serve the doc from a Github Pages docker container
121
121
@docker run -it --rm \
@@ -128,45 +128,45 @@ serve-github-pages: ## Serve the doc from a Github Pages docker container
128
128
129
129
lint : # # lint the code and check coding conventions
130
130
@echo " Running linter..."
131
- @yarn -s lint
131
+ @yarn lint
132
132
133
133
prettier : # # prettify the source code using prettier
134
134
@echo " Running prettier..."
135
- @yarn -s prettier
135
+ @yarn prettier
136
136
137
137
test : build test-unit lint test-e2e # # launch all tests
138
138
139
139
test-unit : # # launch unit tests
140
140
@if [ " $( CI) " != " true" ]; then \
141
141
echo " Running unit tests..." ; \
142
- yarn -s test-unit; \
142
+ yarn test-unit; \
143
143
fi
144
144
@if [ " $( CI) " = " true" ]; then \
145
145
echo " Running unit tests in CI..." ; \
146
- yarn -s test-unit-ci; \
146
+ yarn test-unit-ci; \
147
147
fi
148
148
149
149
test-unit-watch : # # launch unit tests and watch for changes
150
150
echo " Running unit tests..." ; \
151
- yarn -s test-unit --watch; \
151
+ yarn test-unit --watch; \
152
152
153
153
test-e2e : # # launch end-to-end tests (ex. BROWSER=firefox make test-e2e)
154
154
@if [ " $( build) " != " false" ]; then \
155
155
echo ' Building example code (call "make build=false test-e2e" to skip the build)...' ; \
156
- cd examples/simple && BABEL_ENV=cjs yarn -s build; \
156
+ cd examples/simple && BABEL_ENV=cjs yarn build; \
157
157
fi
158
158
159
- @NODE_ENV=test cd cypress && yarn -s test
159
+ @NODE_ENV=test cd cypress && yarn test
160
160
161
161
162
162
test-e2e-local : # # launch end-to-end tests for development
163
163
@echo ' Starting e2e tests environment. Ensure you started the simple example first (make run-simple)'
164
- @cd cypress && yarn -s start
164
+ @cd cypress && yarn start
165
165
166
166
storybook : # # Launch the storybook
167
167
@echo " Running storybook..."
168
- @ONLY=${ONLY} yarn -s storybook
168
+ @ONLY=${ONLY} yarn storybook
169
169
170
170
build-storybook : # # Build the storybook
171
171
@echo " Building storybook..."
172
- @yarn -s build-storybook
172
+ @yarn build-storybook
0 commit comments