John L. Armstrong IV
John L. Armstrong IV
Hey the video plays now, thanks! I still receive the error: `Error parsing header X-XSS-Protection: 1; mode=block; report=https://www.google.com/appserve/security-bugs/log/youtube: insecure reporting URL for secure page at character position 22. The default...
I also received that error, but with the fsAdapter: ``` Type 'PartitioningAdapter' is not assignable to type 'StorageAdapter'. Types of property 'exportDatabase' are incompatible. Type '(dbname: string, dbref: import("/…/node_modules/@lokidb/partitioning-adapter/types/loki/src/loki").Loki) =>...
Thank you!! This’ll be a fun challenge while I’m home for a while :) Just wondering, should I wait for #160 to be resolved first?
Are there any examples using Docker containers for Lambda? That would be perfect for my use case.
Another example is https://github.com/pacocoursey/cmdk
@13banda I don’t remember, the project was a while back. Have you tried https://www.npmjs.com/package/surgeon?
Agreed, I had to write a bash script to maintain global turbo versions. ```bash #!/usr/bin/env bash set -euo pipefail # usage ./global_install turbo package_json_path="./package.json" # loop https://stackoverflow.com/a/255913 for dependency in...
I do actually like that turbo fails when a command is not in the `turbo.json`. It ensures I set the dependencies and cache right and rename my scripts correctly.
@zaripych in the meantime, here’s a workaround for you. In my projects, I have been duplicating package scripts just as you described. But, I try to abstract away all of...
> Actually, already doing that. I have a dev package that is mounted as devDependencies to the root of monorepo and has bin's exposed and available to every sub-package. So...