diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f65ca212..9b711b9d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5797,6 +5797,7 @@ A total of 30 people contributed to this release. Thank you to the following con
+- [`8a97c7d`](https://github.com/stdlib-js/stdlib/commit/8a97c7dbcb07a873fe7395156cfa1fa40beb1dad) - **chore:** update package meta data [(#2738)](https://github.com/stdlib-js/stdlib/pull/2738) _(by stdlib-bot, Philipp Burckhardt)_ - [`1c43f05`](https://github.com/stdlib-js/stdlib/commit/1c43f05a04d6731ea7d1b93f89179da216259005) - **feat:** add C implementation for `math/base/special/factorialln` [(#2731)](https://github.com/stdlib-js/stdlib/pull/2731 ) _(by Gunj Joshi)_ - [`b633157`](https://github.com/stdlib-js/stdlib/commit/b6331572f8cc0dcd92ac1dbeb0aeaabc4d858615) - **docs:** remove comments, set `isNegative` to `uint8_t` in `math/base/special/gammaln` [(#2732)](https://github.com/stdlib-js/stdlib/pull/2732) _(by Gunj Joshi)_ - [`759e667`](https://github.com/stdlib-js/stdlib/commit/759e6676d54a121a5458edbe0f6caa541c465001) - **feat:** add C implementation for `math/base/special/sinc` _(by Gunj Joshi)_ diff --git a/base/special/binomcoef/package.json b/base/special/binomcoef/package.json index cb300de13..aa2230f5e 100644 --- a/base/special/binomcoef/package.json +++ b/base/special/binomcoef/package.json @@ -14,11 +14,14 @@ } ], "main": "./lib", + "gypfile": true, "directories": { "benchmark": "./benchmark", "doc": "./docs", "example": "./examples", + "include": "./include", "lib": "./lib", + "src": "./src", "test": "./test" }, "types": "./docs/types", diff --git a/base/special/factorialln/package.json b/base/special/factorialln/package.json index dbc0f8140..2941b1e1d 100644 --- a/base/special/factorialln/package.json +++ b/base/special/factorialln/package.json @@ -14,11 +14,14 @@ } ], "main": "./lib", + "gypfile": true, "directories": { "benchmark": "./benchmark", "doc": "./docs", "example": "./examples", + "include": "./include", "lib": "./lib", + "src": "./src", "test": "./test" }, "types": "./docs/types", diff --git a/base/special/gammaln/package.json b/base/special/gammaln/package.json index a0fca8e99..c91410ead 100644 --- a/base/special/gammaln/package.json +++ b/base/special/gammaln/package.json @@ -14,12 +14,15 @@ } ], "main": "./lib", + "gypfile": true, "directories": { "benchmark": "./benchmark", "doc": "./docs", "example": "./examples", + "include": "./include", "lib": "./lib", "scripts": "./scripts", + "src": "./src", "test": "./test" }, "types": "./docs/types", diff --git a/base/special/sinc/package.json b/base/special/sinc/package.json index 249aadf98..41707681c 100644 --- a/base/special/sinc/package.json +++ b/base/special/sinc/package.json @@ -14,11 +14,14 @@ } ], "main": "./lib", + "gypfile": true, "directories": { "benchmark": "./benchmark", "doc": "./docs", "example": "./examples", + "include": "./include", "lib": "./lib", + "src": "./src", "test": "./test" }, "types": "./docs/types",