Tomer Shalev

Results 16 comments of Tomer Shalev

I think it caused by `write_with_body` that stores the value as Json: ``` let builder = if let Some(b) = body { builder.json(b) } else { builder }; ```

Does anyone knows if this is still an issue? @tisba , @andrewvmail , @hui6075 , @nniclausse ?

Seems to work for me in latest release.

``` "dependencies": { "@quasar/extras": "^1.1.4", "quasar": "^1.0.0-rc.4", ``` ``` $ quasar -v 1.0.0-rc.7 ```

I think that when executing `yarn run` it takes `node_modules/.bin/quasar` (1.0.0-rc.4) instead of `/usr/local/bin/quasar` (1.0.0-rc.7) This works: ``` $ quasar serve test/lighthouse/reports/ --port 8789 ```

``` $ quasar info Operating System - Darwin(17.7.0) - darwin/x64 NodeJs - 12.3.1 Global packages NPM - 6.9.0 yarn - 1.16.0 @quasar/cli - 1.0.0-rc.2 cordova - Not installed Important local...

I added the following `package.json` script: `"quasar:version": "quasar -v"` And ran it: ``` $ yarn run quasar:version yarn run v1.16.0 $ quasar -v 1.0.0-rc.7 ✨ Done in 0.22s. $ quasar...

In `node_modules/@quasar/app/bin/quasar` clearly there is no `serve` command. This is the file that gets called by `yarn run ...`, but it is not called when running `$ quasar ...` directly...

The issue is cause due to `yarn run` command prepends the path of `node_modules/.bin` to `PATH` environment variable. https://github.com/yarnpkg/yarn/blob/master/src/cli/commands/run.js#L52 ``` $ cat print_path.sh #!/usr/bin/env bash echo $PATH | sed 'y/:/\n/'...

```python # -*- coding: utf-8 -*- import logging import click from click.testing import CliRunner import click_log import pytest logging.basicConfig(level=logging.WARNING, format='CUSTOM_FORMATTER | %(levelname)s | %(message)s') # Now the handler of the...