Deep Malhan

Results 9 comments of Deep Malhan

Has this been confirmed to be in Jul - Sep timeframe?

Running into this exact error with Artifactory, tried setting `.npmrc` file with authentication token inside of it, passing in token as an argument to `lerna publish` and much more. The...

Update, got it to work by having this in my `.npmrc` file: ``` @scope=https://hostname/artifactory/api/npm/npm-virtual/ //hostname/artifactory/api/npm/npm-virtual/:_password= //hostname/artifactory/api/npm/npm-virtual/:username= //hostname/artifactory/api/npm/npm-virtual/:email= //hostname/artifactory/api/npm/npm-virtual/:always-auth=true registry=https://hostname/artifactory/api/npm/npm-virtual/ ``` And then I ran `npx lerna publish from-package` and it...

```json { "version": "independent", "packages": [ "packages/*" ], "command": { "add": { "registry": "https://hostname/artifactory/api/npm/npm-repo" }, "create": { "registry": "https://hostname/artifactory/api/npm/npm-repo", "access": "restricted" }, "publish": { "registry": "https://hostname/artifactory/api/npm/npm-repo", "verifyAccess": false, "ignoreChanges": [...

Makes sense, glad it worked out! FYI for anyone who sees this in the future, `sed` works on macOS but needs an additional `''` after `-i` flag and then the...

Same error, will try to explicitly define `react-docgen` dependency but commenting here to bump up the issue.

Wiped and redownloaded `npm_modules` after adding `react-docgen: ^4.1.1` as a dev dependency. Still facing the error. @DavidBriglio what version of the library did you end up using to resolve the...

Yeah I'll be happy to! Do you mind pointing me in the right direction of where the method will go? I see the data is stored in the `Demo` component's...

@germanattanasio did you get a chance to mull this over?