-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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) | ||
|