Skip to content

Commit 8e7d0b8

Browse files
committed
Multiple react versions
1 parent 02f7357 commit 8e7d0b8

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-node@v3
2020
with:
2121
node-version: ${{ matrix.node-version }}
22-
- run: npm ci
22+
- run: npm install --save-dev
2323
- run: npm run backend:lint:check
2424
- run: npm run backend_auth:lint:check
2525
- run: npm run frontend_auth:lint:check

sites/react-backend-auth/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@types/react": "^18.0.26",
7-
"@types/react-dom": "^18.0.10",
6+
"@types/react": "*",
7+
"@types/react-dom": "*",
88
"google-analytics-embed-react": "0.0.1",
9-
"react": "^18.2.0",
10-
"react-dom": "^18.2.0",
11-
"axios": "1.2.2"
9+
"react": "*",
10+
"react-dom": "*",
11+
"axios": "*"
1212
},
1313
"devDependencies": {
1414
"react-scripts": "5.0.1",

sites/react-frontend-auth/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@types/react": "^18.0.26",
7-
"@types/react-dom": "^18.0.10",
6+
"@types/react": "*",
7+
"@types/react-dom": "*",
88
"google-analytics-embed-react": "0.0.1",
9-
"react": "^18.2.0",
10-
"react-dom": "^18.2.0"
9+
"react": "*",
10+
"react-dom": "*"
1111
},
1212
"devDependencies": {
1313
"@types/google.accounts": "^0.0.5",

0 commit comments

Comments
 (0)