danfojs
danfojs copied to clipboard
Version 1.1.1 published to NPM does not match release 1.1.1 in GitHub
The published package for danfojs-node 1.1.1 on NPM registry does not match the version 1.1.1 release in this GitHub repository. Specifically it does not contain #441. The version numbers look correct in NPM however the contents of the package are not.
To Reproduce
- npm install [email protected]
- cat package.json "danfojs-node": "^1.1.1",
- less node_modules/danfsjs-node/dist/danfojs-base/core/frame.js Function DataFrame.prototype.fillNa = function (values, options) { .... if (!values && typeof values !== "boolean" && typeof values !== "number") { ....
- wget https://registry.npmjs.org/danfojs-node/-/danfojs-node-1.1.1.tgz
- tar xvzf danfojs-node-1.1.1.tgz
- less package/dist/danfojs-base/core/frame.js .... if (!values && typeof values !== "boolean" && typeof values !== "number") { ....
Expected behavior frame.js expected to contain: Function DataFrame.prototype.fillNa = function (values, options) { .... if (!values && typeof values !== "boolean" && typeof values !== "number" && typeof values !== "string") { ....
Environment:
- OS: Rockey Linux 8
- Runtime: Node v14.19.2
- NPM version: 6.14.17