Skip to content

Commit 405da55

Browse files
committed
Finish migration to yarn 2
1 parent 8fe8946 commit 405da55

File tree

6 files changed

+37561
-27879
lines changed

6 files changed

+37561
-27879
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,10 @@ cypress/videos
1616
cypress/screenshots
1717
/public
1818
/storybook-static
19+
.pnp.*
20+
.yarn/*
21+
!.yarn/patches
22+
!.yarn/plugins
23+
!.yarn/releases
24+
!.yarn/sdks
25+
!.yarn/versions

Makefile

+37-37
Original file line numberDiff line numberDiff line change
@@ -16,106 +16,106 @@ install: package.json ## install dependencies
1616
run: run-simple
1717

1818
run-simple: ## run the simple example
19-
@yarn -s run-simple
19+
@yarn run-simple
2020

2121
run-no-code: ## run the no-code example
22-
@yarn -s run-no-code
22+
@yarn run-no-code
2323

2424
run-tutorial: ## run the tutorial example
25-
@yarn -s run-tutorial
25+
@yarn run-tutorial
2626

2727
run-demo: ## run the ecommerce example
28-
@yarn -s run-demo
28+
@yarn run-demo
2929

3030
run-demo-watch: ## run the ecommerce example and watch changes in ra dependencies
31-
@yarn -s run-demo-watch
31+
@yarn run-demo-watch
3232

3333
build-demo: ## compile the ecommerce example to static js
34-
@yarn -s build-demo
34+
@yarn build-demo
3535

3636
run-graphql-demo: ## run the ecommerce example with a graphql backend
37-
@yarn -s run-graphql-demo
37+
@yarn run-graphql-demo
3838

3939
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
4141

4242
run-crm: ## run the crm example
43-
@yarn -s run-crm
43+
@yarn run-crm
4444

4545
build-crm: ## run the crm example
46-
@yarn -s build-crm
46+
@yarn build-crm
4747

4848
build-ra-core:
4949
@echo "Transpiling ra-core files...";
50-
@cd ./packages/ra-core && yarn -s build
50+
@cd ./packages/ra-core && yarn build
5151

5252
build-ra-test:
5353
@echo "Transpiling ra-test files...";
54-
@cd ./packages/ra-test && yarn -s build
54+
@cd ./packages/ra-test && yarn build
5555

5656
build-ra-ui-materialui:
5757
@echo "Transpiling ra-ui-materialui files...";
58-
@cd ./packages/ra-ui-materialui && yarn -s build
58+
@cd ./packages/ra-ui-materialui && yarn build
5959

6060
build-ra-language-english:
6161
@echo "Transpiling ra-language-english files...";
62-
@cd ./packages/ra-language-english && yarn -s build
62+
@cd ./packages/ra-language-english && yarn build
6363

6464
build-ra-language-french:
6565
@echo "Transpiling ra-language-french files...";
66-
@cd ./packages/ra-language-french && yarn -s build
66+
@cd ./packages/ra-language-french && yarn build
6767

6868
build-react-admin:
6969
@echo "Transpiling react-admin files...";
7070
@rm -rf ./packages/react-admin/docs
71-
@cd ./packages/react-admin && yarn -s build
71+
@cd ./packages/react-admin && yarn build
7272
@mkdir packages/react-admin/docs
7373
@cp docs/*.md packages/react-admin/docs
7474

7575
build-ra-data-fakerest:
7676
@echo "Transpiling ra-data-fakerest files...";
77-
@cd ./packages/ra-data-fakerest && yarn -s build
77+
@cd ./packages/ra-data-fakerest && yarn build
7878

7979
build-ra-data-json-server:
8080
@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
8282

8383
build-ra-data-localstorage:
8484
@echo "Transpiling ra-data-localstorage files...";
85-
@cd ./packages/ra-data-localstorage && yarn -s build
85+
@cd ./packages/ra-data-localstorage && yarn build
8686

8787
build-ra-data-simple-rest:
8888
@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
9090

9191
build-ra-data-graphql:
9292
@echo "Transpiling ra-data-graphql files...";
93-
@cd ./packages/ra-data-graphql && yarn -s build
93+
@cd ./packages/ra-data-graphql && yarn build
9494

9595
build-ra-data-graphql-simple:
9696
@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
9898

9999
build-ra-i18n-polyglot:
100100
@echo "Transpiling ra-i18n-polyglot files...";
101-
@cd ./packages/ra-i18n-polyglot && yarn -s build
101+
@cd ./packages/ra-i18n-polyglot && yarn build
102102

103103
build-ra-input-rich-text:
104104
@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
106106

107107
build-ra-no-code:
108108
@echo "Transpiling ra-no-code files...";
109-
@cd ./packages/ra-no-code && yarn -s build
109+
@cd ./packages/ra-no-code && yarn build
110110

111111
build-data-generator:
112112
@echo "Transpiling data-generator files...";
113-
@cd ./examples/data-generator && yarn -s build
113+
@cd ./examples/data-generator && yarn build
114114

115115
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
116116

117117
doc: ## compile doc as html and launch doc web server
118-
@yarn -s doc
118+
@yarn doc
119119

120120
serve-github-pages: ## Serve the doc from a Github Pages docker container
121121
@docker run -it --rm \
@@ -128,45 +128,45 @@ serve-github-pages: ## Serve the doc from a Github Pages docker container
128128

129129
lint: ## lint the code and check coding conventions
130130
@echo "Running linter..."
131-
@yarn -s lint
131+
@yarn lint
132132

133133
prettier: ## prettify the source code using prettier
134134
@echo "Running prettier..."
135-
@yarn -s prettier
135+
@yarn prettier
136136

137137
test: build test-unit lint test-e2e ## launch all tests
138138

139139
test-unit: ## launch unit tests
140140
@if [ "$(CI)" != "true" ]; then \
141141
echo "Running unit tests..."; \
142-
yarn -s test-unit; \
142+
yarn test-unit; \
143143
fi
144144
@if [ "$(CI)" = "true" ]; then \
145145
echo "Running unit tests in CI..."; \
146-
yarn -s test-unit-ci; \
146+
yarn test-unit-ci; \
147147
fi
148148

149149
test-unit-watch: ## launch unit tests and watch for changes
150150
echo "Running unit tests..."; \
151-
yarn -s test-unit --watch; \
151+
yarn test-unit --watch; \
152152

153153
test-e2e: ## launch end-to-end tests (ex. BROWSER=firefox make test-e2e)
154154
@if [ "$(build)" != "false" ]; then \
155155
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; \
157157
fi
158158

159-
@NODE_ENV=test cd cypress && yarn -s test
159+
@NODE_ENV=test cd cypress && yarn test
160160

161161

162162
test-e2e-local: ## launch end-to-end tests for development
163163
@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
165165

166166
storybook: ## Launch the storybook
167167
@echo "Running storybook..."
168-
@ONLY=${ONLY} yarn -s storybook
168+
@ONLY=${ONLY} yarn storybook
169169

170170
build-storybook: ## Build the storybook
171171
@echo "Building storybook..."
172-
@yarn -s build-storybook
172+
@yarn build-storybook

examples/crm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@mui/material": "^5.0.2",
76
"@mui/icons-material": "^5.0.1",
7+
"@mui/material": "^5.0.2",
88
"@nivo/bar": "^0.67.0",
99
"@nivo/core": "^0.67.0",
1010
"date-fns": "^2.19.0",

examples/demo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "3.0.0",
44
"private": true,
55
"dependencies": {
6-
"@mui/material": "^5.0.2",
76
"@mui/icons-material": "^5.0.1",
7+
"@mui/material": "^5.0.2",
88
"@types/inflection": "^1.5.28",
99
"@types/recharts": "^1.8.10",
1010
"data-generator-retail": "^4.0.0-alpha.0",

package.json

+15-10
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66
"watch": "lerna run --parallel watch",
77
"test-unit": "cross-env NODE_ENV=test cross-env BABEL_ENV=cjs NODE_ICU_DATA=./node_modules/full-icu jest",
88
"test-unit-ci": "cross-env NODE_ENV=test cross-env BABEL_ENV=cjs NODE_ICU_DATA=./node_modules/full-icu jest --runInBand",
9-
"test-e2e": "yarn run -s build && cross-env NODE_ENV=test && cd cypress && yarn -s test",
10-
"test-e2e-local": "cd cypress && yarn -s start",
11-
"test": "yarn -s test-unit && yarn -s test-e2e",
9+
"test-e2e": "yarn run -s build && cross-env NODE_ENV=test && cd cypress && yarn test",
10+
"test-e2e-local": "cd cypress && yarn start",
11+
"test": "yarn test-unit && yarn test-e2e",
1212
"doc": "cd docs && jekyll server . --watch",
1313
"lint": "eslint --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\" \"./examples/**/src/**/*.{js,ts,tsx}\" \"./cypress/**/*.{js,ts,tsx}\"",
1414
"prettier": "prettier --config ./.prettierrc.js --write --list-different \"packages/*/src/**/*.{js,json,ts,tsx,css,md}\" \"examples/*/src/**/*.{js,ts,json,tsx,css,md}\" \"cypress/**/*.{js,ts,json,tsx,css,md}\"",
15-
"run-simple": "cd examples/simple && yarn -s start",
15+
"run-simple": "cd examples/simple && yarn start",
1616
"run-no-code": "cd examples/no-code && yarn dev",
17-
"run-tutorial": "cd examples/tutorial && yarn -s start",
18-
"run-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn -s start",
19-
"build-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn -s build",
20-
"run-graphql-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=graphql yarn -s start",
17+
"run-tutorial": "cd examples/tutorial && yarn start",
18+
"run-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn start",
19+
"build-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn build",
20+
"run-graphql-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=graphql yarn start",
2121
"run-demo-watch": "concurrently \"yarn run watch\" \"yarn run run-demo\"",
2222
"run-graphql-demo-watch": "concurrently \"yarn run watch\" \"yarn run run-graphql-demo\"",
23-
"run-crm": "cd examples/crm && yarn -s start",
24-
"build-crm": "cd examples/crm && yarn -s build",
23+
"run-crm": "cd examples/crm && yarn start",
24+
"build-crm": "cd examples/crm && yarn build",
2525
"storybook": "start-storybook -p 9009",
2626
"build-storybook": "build-storybook --no-dll -c .storybook -o public --quiet"
2727
},
@@ -78,5 +78,10 @@
7878
"npm-dts": "^1.3.10",
7979
"tsup": "^5.11.4"
8080
},
81+
"dependenciesMeta": {
82+
"@react-spring/core": {
83+
"built": false
84+
}
85+
},
8186
"packageManager": "yarn@3.1.1"
8287
}

0 commit comments

Comments
 (0)