Version 5.2.0 doesn't specify `deep-equal` as a dependency, but still tries to `require` it
TomerAberbach opened this issue · 6 comments
TomerAberbach commented
Go to https://www.npmjs.com/package/aria-query?activeTab=code and then lib/elementRoleMap.js
and you can see the transpiled file contains the following line:
var _deepEqual = _interopRequireDefault(require("deep-equal"));
This fails because deep-equal
isn't installed.
gtm-nayan commented
jessebeach commented
Alright, let's get that fixed. New version inbound in a few minutes.
jessebeach commented
So weird, it's like npm publish
didn't run npm build
. :/
jessebeach commented
Fixed in v5.2.1
I need to investigate why npm publish
doesn't run npm build
.
jessebeach commented
@TomerAberbach does version v5.2.1 fix the issue for you?
TomerAberbach commented
Yup, solved for me. Thanks!