react-activestorage-provider icon indicating copy to clipboard operation
react-activestorage-provider copied to clipboard

Tag 0.7 code is latest in NPM (and mislabeled 0.8)

Open winescout opened this issue 5 years ago • 0 comments

Looks like the push NPM a year ago didn't get the bugfix for host and port fix that went into master a year ago. Could you verify that, and hopefully republish?

For example, here is the Helper.js.flow after a fresh install:

➜  cat node_modules/react-activestorage-provider/dist/helpers.js.flow
/**
 * @flow
 */

export function compactObject<T: {}>(obj: T): T {
  let newObj = { ...obj }

  Object.keys(newObj).forEach(
    key => newObj[key] === undefined && delete newObj[key]
  )

  return newObj
}

winescout avatar Apr 13 '20 03:04 winescout