Skip to content

Commit

Permalink
Datafit v1.1.1 (#56)
Browse files Browse the repository at this point in the history
* Change postpack script

* txt->text
  • Loading branch information
nicfv authored Mar 20, 2024
1 parent 62434b7 commit 7519d37
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions datafit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.1.1

- Fix `postpack` script
- Fix unknown highlighting for typedoc

## 1.1.0

- Remove several interface types
Expand Down
4 changes: 2 additions & 2 deletions datafit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ console.log('Error: ' + rel_error.toFixed(2) + '%');

#### Program Output

```txt
```text
Dataset [
{ x: -2, y: -1.4852644866602869 },
{ x: -1, y: 0.1447823296293199 },
Expand Down Expand Up @@ -168,7 +168,7 @@ console.log(summary);

#### Program Output

```txt
```text
{
params: [ 2.010807805144429, -0.9965373369374049, 0.9949551401129608 ],
error: 0.00006116549611081122,
Expand Down
4 changes: 2 additions & 2 deletions datafit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datafit",
"version": "1.1.0",
"version": "1.1.1",
"description": "Simple curve-fitting algorithm",
"homepage": "https://npm.nicfv.com/datafit",
"main": "dist/index.js",
Expand All @@ -16,7 +16,7 @@
"clean": "rm -rf node_modules package-lock.json dist types docs",
"docs": "rm -rf docs && typedoc --includeVersion --disableSources --hideGenerator src",
"prepack": "npm run build && npm run types",
"postpack": "npm run clean"
"postpack": "rm -rf dist types"
},
"keywords": [
"math",
Expand Down

0 comments on commit 7519d37

Please sign in to comment.