Bert Catsburg

Results 6 comments of Bert Catsburg

And while this gives the undesired effect described above: ``` debug(error) ``` the following does work as desired. ``` debug({x: error}) ```

Here it is: **package.json** ``` { "name": "debug-issue711", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "start": "export DEBUG=d:* && node app.js" }, "author": "", "license": "ISC", "dependencies": { "debug":...

This also does not work for version 6.12.0. Upgrading the packages to their latest version in the example-repo. Test script: Postman: localhost:3011/checkschema gives ok and localhost:3011/body gives validation error. Checkchema...

Same problem here. And the code is ``` const MyActionButton = () => { return ( ) } ``` OS is iOS, and display is iPhone (via Expo), and also...

The directory-structure remains confusing in this sftp container. How I got it to work: ## docker-compose.yml ```yaml services: sftp: image: "atmoz/sftp" container_name: sftp volumes: - ./files:/home - ./users.conf:/etc/sftp/users.conf:ro networks: appl-net:...

Updated all the versions in my demo-repo. Package.json now is: ``` "dependencies": { "express": "4.18.2", "express-validator": "6.14.2", }, ``` Still unexpected results. 1 of the tests passing while it should...