Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/giant-pandas-design.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ruplot/core

## 0.2.0

### Minor Changes

- eb88bf3: Initial public release

## 0.1.0

### Initial public release
Expand Down
15 changes: 12 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ruplot/core",
"version": "0.1.0",
"version": "0.2.0",
"description": "Framework-agnostic engine for ruplot — session, classifier, stores, sync, data plane",
"type": "module",
"sideEffects": false,
Expand All @@ -14,13 +14,22 @@
"require": "./dist/index.cjs"
}
},
"files": ["dist", "README.md"],
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --external uplot",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run"
},
"keywords": ["uplot", "chart", "timeseries", "canvas", "performance"],
"keywords": [
"uplot",
"chart",
"timeseries",
"canvas",
"performance"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Avoronov93/react-uplot-core.git",
Expand Down
11 changes: 11 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @ruplot/react

## 0.2.0

### Minor Changes

- eb88bf3: Initial public release

### Patch Changes

- Updated dependencies [eb88bf3]
- @ruplot/core@0.2.0

## 0.1.0

### Initial public release
Expand Down
16 changes: 13 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ruplot/react",
"version": "0.1.0",
"version": "0.2.0",
"description": "Benchmark-driven React 19 bindings for uPlot",
"type": "module",
"sideEffects": false,
Expand All @@ -14,14 +14,24 @@
"require": "./dist/index.cjs"
}
},
"files": ["dist", "README.md"],
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --external react --external react-dom --external uplot --external @ruplot/core",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"size": "node ../../scripts/check-size.mjs"
},
"keywords": ["react", "uplot", "chart", "timeseries", "hooks", "performance"],
"keywords": [
"react",
"uplot",
"chart",
"timeseries",
"hooks",
"performance"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Avoronov93/react-uplot-core.git",
Expand Down
Loading