Ankur Bargotra
Ankur Bargotra
@bartholomej I get the error `mkdirp.sync is not a function`, when running the following command: ` ngx-translate-extract --input ./src --output ./i18n/en.json --clean --sort --format namespaced-json --marker TRANSLATE ` Even added...
@adnanomerovic Temporary solution using patch-package and this fix: ``` diff --git a/node_modules/@bartholomej/ngx-translate-extract/dist/cli/tasks/extract.task.js b/node_modules/@bartholomej/ngx-translate-extract/dist/cli/tasks/extract.task.js index 23f06c6..d408e97 100644 --- a/node_modules/@bartholomej/ngx-translate-extract/dist/cli/tasks/extract.task.js +++ b/node_modules/@bartholomej/ngx-translate-extract/dist/cli/tasks/extract.task.js @@ -103,7 +103,7 @@ export class ExtractTask { save(output, collection)...
In my main component I have specified `isActive` which is set based on the custom touch handler hook. ``` const isActive = useValue(false); const onTouch = useGraphTouchHandler({ snapTo: true, width,...
After rolling back to RN `0.69.5` (since only `0.1.146` works with `0.70`) & Skia `0.1.143` my application is working again. After further testing any Skia version `0.1.145` and up causes...
@chrfalch @wcandillon Created the repository with reproducible example here: https://github.com/enchorb/RNTest Works on versions 0.1.143 and below, otherwise the error occurs On one terminal window `yarn:start` will start the metro server...
Same, my code looks like this ``` await WifiManager.connectToProtectedSSID(NETWORK_NAME, NETWORK_PASS, false) .then(async () => { if (Platform.OS === 'android') await WifiManager.forceWifiUsageWithOptions(true, { noInternet: true }); }) .catch((err) => handleWifiError(err?.code)); };...
Any updates on this issue?
For the time being I have this working using this syntax: ``` await knex.schema.raw( `CREATE UNIQUE INDEX "unique_partial_idx_userId_deleted" ON "users" ("userId", "deleted") WHERE "deleted" IS NOT TRUE` ); ``` I...
Same issue here, the background color is applied to the entire `Picker` not the desired `Picker.Item`
Looking forward to having this merged, currently the only part of our CI/CD pipeline that doesn't work with WLIF