Morlay
Morlay
A solution, use babel and node-config https://github.com/morlay/babel-plugin-transform-inline-node-config If we don't need to dynamic switch in built app.
hope this feature could land asap. it will be useful for ci caching. https://github.com/moby/buildkit/issues/1673#issuecomment-698348524 for host directories, could be hacking by ```bash # ensure host path $ mkdir -p /tmp/gocache...
Could work with `--config` to overwrites ```shell fleet build --release -Z unstable-options --config "profile.release.split-debuginfo = 'off'" ```
@danichim my solution is fork the keyboardhandler, and change the keyboard handle, remove code to change rotation and pitch https://github.com/mapbox/mapbox-gl-js/blob/master/src/ui/handler/keyboard.js then ```js m.keyboard.disable(); m.keyboard = new KeyboardWithoutPitchAndRotateHandler(m); m.keyboard.enable(); ``` ```ts...
the `umd` could be the `main`.
@CodeChamp-SS @russelRajitha it may a emulator path issue, i created a symlink to fix it ```shell ln -s ~/Library/Android/sdk/emulator/emulator-darwin-aarch64-0.2/emulator ~/Library/Android/sdk/emulator/emulator ```  emulator dir: ```shell $ ~/Library/Android/sdk/emulator ll -rw-r--r-- 1...
@741g could you help to upgrade the `./darwin-aarch64-replace.sh` ? to make first installing happy i haven't find where the source code is. https://github.com/google/android-emulator-m1-preview/issues/1#issuecomment-818398763
@CodeChamp-SS `./darwin-aarch64-replace.sh` now will not correctly run when first installed. just need to run, and restart your created adv ```shell # path to sdk emulator cd ~/Library/Android/sdk/emulator # cleanup all,...
@CodeChamp-SS `cp -r emulator-darwin-aarch64-0.2/* . ` the dot for current dir
@CodeChamp-SS not sure which version you installed. try manual download ```bash # copy from `darwin-aarch64-replace.sh` export EMULATOR_DOWNLOAD_BASE_NAME=emulator-darwin-aarch64-0.2 rm -rf ${EMULATOR_DOWNLOAD_BASE_NAME} curl -L "https://github.com/google/android-emulator-m1-preview/releases/download/0.2/${EMULATOR_DOWNLOAD_BASE_NAME}-engine-only.zip" -o ${EMULATOR_DOWNLOAD_BASE_NAME}.zip unzip ${EMULATOR_DOWNLOAD_BASE_NAME}.zip ```