This file contains hidden or 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
import GUI from "lil-gui"; | |
import type { Entity } from "aframe"; | |
AFRAME.registerComponent("lil-gui", { | |
init: function () { | |
// Add styles for folder titles | |
const style = document.createElement("style"); | |
style.textContent = ` | |
.lil-gui .entity-title { | |
font-size: 1.2em; |
This file contains hidden or 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
cd /tmp | |
npm install [email protected] | |
cat node_modules/redux/src/createStore.js node_modules/redux/src/utils/* > redux.js | |
sed -e 's@^export default @@' -e 's@^export @@' -e 's@^import.*@@' \ | |
-e 's@`"${actionType.toString()}"`@actionType.toString()@' \ | |
redux.js >redux_wo_import_export.js | |
cat << "EOF" >> redux_wo_import_export.js |
This file contains hidden or 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
./update-check run | |
./update-check update | |
for container in `docker ps -q`; do | |
./update-check check $container | |
docker inspect --format '{{.Name}}' $container | |
done |