Anthony Drogon
Anthony Drogon
What does `npm audit` print? Are you sure it is related to this dependency? We have 0 here. I would understand a few, but that many might indicate it is...
Upvoting since we would have the same request for `Subscription.status`, for example. Reading the javadoc on the property: > Possible values are `incomplete`, `incomplete_expired`, `trialing`, `active`, `past_due`, `canceled`, or `unpaid`....
Looks like it'll be fixed by https://github.com/angular/angular/pull/30200 You might still want to check ng-packagr and see if you like the output :)
Although https://github.com/angular/angular/pull/30200 did not fix it, https://github.com/angular/angular/pull/30591 should.
After applying upstream's change, we get the following message: `ERROR in Cannot read property 'getText' of null` Back to troubleshooting then.
`"angular2-signaturepad": "2.11.0"` is dependent on `"signature_pad": "2.3.2"` In `package.json`, we simply force the dependency: `"signature_pad": "3.0.0-beta.3"` And it works. I'm not sure about your exact issue, but give it a...