Julien Ma
Julien Ma
Hey, chiming in to report the same issue, in another context: Versions: ```json "@prettier/plugin-ruby": "^1.5.5", "prettier": "^2.3.1", "prettier-plugin-erb": "^0.3.0", ``` Source: ```erb ``` Formatted output: ```erb ```
Thank you @adamzapasnik... but this seems worse :/ package.json: ```diff "devDependencies": { - "@prettier/plugin-ruby": "^1.5.5", + "@prettier/plugin-ruby": "^1.6.0", "prettier": "^2.3.1", - "prettier-plugin-erb": "^0.3.0", + "prettier-plugin-erb": "^0.4.0", "webpack-dev-server": "^3.11.2" }, ```...
Downgrading `prettier` to `2.2.1` did the trick: ```diff "devDependencies": { - "@prettier/plugin-ruby": "^1.5.5", - "prettier": "^2.3.1", - "prettier-plugin-erb": "^0.3.0", + "@prettier/plugin-ruby": "^1.6.0", + "prettier": "2.2.1", + "prettier-plugin-erb": "^0.4.0", }, ```...
Hijacking the thread — I'm interested in passing some custom dimensions / metrics, but also passing other google analytics parameters (what they call "fields"). E.g. to [force a session to...
Ha, excellent @ttmarek! I was just looking at the React Native target, as I saw it supports custom dimensions :) I'd mostly use this with `events`, so am using a...
@ttmarek 1. 👍 2. 👍 3. It's clearly a different topic anyway.
@ttmarek I can't promise anything, but if I could set some time aside to help with this, where do you suggest I start? Copy/pasting the things related to custom dimensions...
Thanks @ttmarek. I switched to the Amplitude target since then (not because of this PR, just because I can't get the heck out of GA). I'll still try to have...
Hey @ttmarek, thanks for the answer. I made some changes to my code logic, and don't need this anymore. However yes, that'd probably be a good idea to add a...
Oh, sure. But, what you mean is that I should be able to do this? ```js const emitEvent1 = debounceEvent(60*1000, emitEvent1Validated); const emitEvent1Validated = ensure(validator, logEvent((action) => ({ type: 'My...