Skip to content

Commit

Permalink
do not update to react 18
Browse files Browse the repository at this point in the history
  • Loading branch information
bourgeoa committed Mar 31, 2022
1 parent b076106 commit d090acf
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ function gitCheckoutMainOf {
git pull
}
function npmInstallUpdateOf {
echo Install $1
echo update dependencies $1
nvm use --delete-prefix
rm -rf node_modules
rm package-lock.json
npx npm-check-updates -u
# npm install --save-dev eslint@7 # eslint@8 do not works with node.j < 16
npm install
}
function testBuildPushTagOn {
echo install $1
npm install
echo Test, Build and Create tag of $1
npm test
npm run build
Expand Down Expand Up @@ -67,9 +68,17 @@ updateRepo solid-logic # solid-logic (rdflib, solid-namespace)

updateRepo pane-registry # pane-registry (solid-logic, rdflib)

updateRepo solid-ui # solid-ui (pane-registry, solid-logic, rdflib, solid-auth-client, solid-namespace)
gitCheckoutMainOf solid-ui # solid-ui (pane-registry, solid-logic, rdflib, solid-auth-client, solid-namespace)
npmInstallUpdateOf solid-ui
npm install --save-dev @testing-library/user-event@13
npm install --save react@17 react-dom@17 react-is@17 # for [email protected]
testBuildPushTagOn solid-ui

gitCheckoutMainOf activitystreams-pane # activity-streams (solid-ui, pane-registry, solid-logic, rdflib)
npmInstallUpdateOf activitystreams-pane
npm install --save react@17 react-dom@17 # for [email protected]
testBuildPushTagOn activitystreams-pane

updateRepo activitystreams-pane # activity-streams (solid-ui, pane-registry, solid-logic, rdflib)
updateRepo chat-pane # chat-pane (solid-ui, solid-logic, rdflib)
updateRepo folder-pane # folder-pane (solid-ui, solid-logic)
updateRepo issue-pane # issue-pane (solid-ui, pane-registry, rdflib)
Expand Down

0 comments on commit d090acf

Please sign in to comment.