Skip to content

Commit

Permalink
Chore release - version bumps, improvements and minor fixes
Browse files Browse the repository at this point in the history
// reworked scripts to use npm/yarn commands
// removed user/group setup from scripts
// added create and install scripts
// version bump for Node (staying with LTS 16 for the moment, since 20 brings some problems with events)
// version bumps for Node/JS dependencies
// switched custom bash profile for synth-shell in Node container
// removed docker compose version in docker-compose.yml (not needed anymore)
// added LANG and NODE_ENV env vars to docker-compose.yml
// named anonymous functions in gulp sequences for better logging
// fixed minor bug in Viewport::VisibilityObserver.#handleIntersections, adding a safeguard for getting the state from the map (necessary, since browsers seem to handle unobserve not completely synchronous)
  • Loading branch information
OktarinTentakel committed Apr 21, 2024
1 parent 79b8912 commit 870c6b2
Show file tree
Hide file tree
Showing 369 changed files with 2,386 additions and 2,942 deletions.
3 changes: 1 addition & 2 deletions bin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
cd "${0%/*}" && \
cd .. && \
docker compose run --rm \
-u "$(id -u):$(id -g)" \
annex bash -c "yarn install; gulp --color build"
annex bash -c 'yarn run build'
5 changes: 5 additions & 0 deletions bin/create.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

cd "${0%/*}" && \
cd .. && \
docker compose build --no-cache
3 changes: 1 addition & 2 deletions bin/documentation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
cd "${0%/*}" && \
cd .. && \
docker compose run --rm \
-u "$(id -u):$(id -g)" \
annex bash -c "yarn install; gulp --color documentation"
annex bash -c 'yarn run documentation'
6 changes: 6 additions & 0 deletions bin/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

cd "${0%/*}" && \
cd .. && \
docker compose run --rm \
annex bash -c 'yarn install'
1 change: 0 additions & 1 deletion bin/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
cd "${0%/*}" && \
cd .. && \
docker compose run --rm \
-u "$(id -u):$(id -g)" \
annex bash -c "yarn install; gulp --color test $1"
2 changes: 1 addition & 1 deletion dist/animation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/animation.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/arrays.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/arrays.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/basic.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/basic.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/context.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/context.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/conversion.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/conversion.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cookies.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 870c6b2

Please sign in to comment.