dvirtz

Results 51 comments of dvirtz

I'll be happy to get some hints about if and how to update documentation.

The background is shortly described in the attached issue, but to reiterate I'm getting an S3 URI from my library's clients and in order to call the S3 API I...

works for me with version `5.1.6` ``` { "packages": [ "packages/*" ], "useNx": false, "version": "0.0.0", "nohoist": [ "@types/*" ] } ```

same here OS: Mac OSX BigSur 11.6 VSCode version: 1.61.2 CodeLLDB version: v1.6.8 Compiler: Apple Clang 13.0.0 Debuggee: Native c++ executable Verbose Log configuration: { name: 'liveslicer', type: 'lldb', request:...

Sorry that I'm late for the discussion but if I understand correctly you're suggesting the handler will take an `x3::forward_ast`? Looking at example code, I don't see handlers do this,...

Thanks. My solution is to convert it to a literal string parser using std::to_string: ```c++ int main() { std::string input = "5"; assert(b::parse(input.begin(), input.end(), std::to_string(5))); } ```

@dsame you need to set `workspaces=true` in .npmrc to reproduce the error

I'm working around this by running setup-node with ``` env: npm_config_workspaces: false ```