Skip to content

Commit

Permalink
Update Datafit (1.4.8)/Viridis (1.1.7) (#131)
Browse files Browse the repository at this point in the history
* Smath v1.9.2

* T6 v1.1.8

* Update log

* Consolidate start/docs

* Update datafit to 1.4.8

* Badge on new line

* Update viridis
  • Loading branch information
nicfv authored Dec 6, 2024
1 parent 39f0411 commit 6626e65
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 16 deletions.
1 change: 0 additions & 1 deletion .github/workflows/run
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ if [[ "${1}" == 'publish' ]] ; then
fi
# Run all examples and generate output
cd examples && {
npm i || exit 1
for example in * ; do
if [[ "${example}" =~ ^(.+)\.([mc]?js)$ ]] ; then
# Save example output to a markdown file
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"scripts": {
"start": "npm i && tsc -v && npm start --workspaces",
"stop": "rm -rf packages/*/node_modules packages/*/dist packages/*/types packages/*/examples/*.tgz packages/*/examples/node_modules packages/*/examples/package-lock.json node_modules package-lock.json docs",
"docs": "typedoc --version && typedoc"
"start": "npm i && tsc -v && npm start --workspaces && typedoc --version && typedoc",
"stop": "rm -rf packages/*/node_modules packages/*/dist packages/*/types packages/*/examples/*.tgz packages/*/examples/node_modules packages/*/examples/package-lock.json node_modules package-lock.json docs"
},
"workspaces": [
"packages/t6",
Expand Down
2 changes: 1 addition & 1 deletion packages/datafit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unpublished (1.4.7)
## 1.4.8

- This version is functionally identical to the previous, but is published as a test of the updated workflow, with a cleaned up `package.json` file

Expand Down
2 changes: 1 addition & 1 deletion packages/datafit/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"datafit": "file:datafit-1.4.7.tgz"
"datafit": "file:datafit-1.4.8.tgz"
}
}
6 changes: 3 additions & 3 deletions packages/datafit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datafit",
"version": "1.4.7",
"version": "1.4.8",
"description": "Simple curve-fitting algorithm",
"homepage": "https://npm.nicfv.com/",
"bin": "",
Expand Down Expand Up @@ -46,9 +46,9 @@
"repository": "github:nicfv/npm",
"license": "MIT",
"dependencies": {
"smath": "1.9.1"
"smath": "1.9.2"
},
"devDependencies": {
"t6": "1.1.6"
"t6": "1.1.8"
}
}
4 changes: 3 additions & 1 deletion packages/datafit/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* @packageDocumentation
* ![NPM Downloads](https://img.shields.io/npm/d18m/datafit) Simple curve-fitting algorithm
* Simple curve-fitting algorithm
*
* ![NPM Downloads](https://img.shields.io/npm/d18m/datafit)
*/
export * from './types';
export * from './lib';
2 changes: 1 addition & 1 deletion packages/viridis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unpublished (1.1.6)
## 1.1.7

- This version is functionally identical to the previous, but is published as a test of the updated workflow, with a cleaned up `package.json` file

Expand Down
2 changes: 1 addition & 1 deletion packages/viridis/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"viridis": "file:viridis-1.1.6.tgz"
"viridis": "file:viridis-1.1.7.tgz"
}
}
6 changes: 3 additions & 3 deletions packages/viridis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "viridis",
"version": "1.1.6",
"version": "1.1.7",
"description": "Color gradients for data visualization",
"homepage": "https://npm.nicfv.com/",
"bin": "",
Expand Down Expand Up @@ -38,9 +38,9 @@
"repository": "github:nicfv/npm",
"license": "MIT",
"dependencies": {
"smath": "1.9.1"
"smath": "1.9.2"
},
"devDependencies": {
"t6": "1.1.6"
"t6": "1.1.8"
}
}
4 changes: 3 additions & 1 deletion packages/viridis/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/**
* @packageDocumentation
* ![NPM Downloads](https://img.shields.io/npm/d18m/viridis) Color gradients for data visualization
* Color gradients for data visualization
*
* ![NPM Downloads](https://img.shields.io/npm/d18m/viridis)
*/
export * from './Color';
export * from './Gradient';
Expand Down

0 comments on commit 6626e65

Please sign in to comment.