Russell Stitt

Results 5 comments of Russell Stitt

For anyone coming to this issue with Angular 12 with Node 16, I have worked through the references above and have a monorepo working as I would expect: - common...

``` import { z } from 'zod' const check = (env) => { const parsedEnv = z.string().safeParse(env); if(parsedEnv.success === false) { console.error(parsedEnv.error.message); process.exit(1); } else { console.log('success!') } } check('1')...

are u running as root? `help!': [!] You cannot run CocoaPods as root. I haven't had the issues above but you might refer to this: https://stackoverflow.com/questions/23190064/cant-run-sudo-pod-install-after-updating-to-cocoapods-0-32-1-with-error-you-ca/37451422

did u install cocoapods >=^1.9.1 ? https://stackoverflow.com/questions/20755044/how-do-i-install-cocoapods