-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update version of node * Updated package name in README * Updated pnpm * Updated jest image snapshot * Change story order * Updated Storybook * Re-ran storybook init * Improved scripts * Upgraded Storybook * Fixed an issue with Crosshairs not being long enough * Removed a stray console log * Added some Chromatic test functions * Reduced the size of the huge dataset * Updated line widths for Canvas * Minor event optimizations * Updated pnpm version * Updated workflow * Added changeset * Updated props to supress clipping
- Loading branch information
1 parent
44a2fec
commit 6eba8e0
Showing
57 changed files
with
7,222 additions
and
7,435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"@chart-io/d3": minor | ||
"@chart-io/detection": minor | ||
"@chart-io/react": minor | ||
"@chart-io/types": minor | ||
--- | ||
|
||
Upgraded Storybook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v18.18.2 | ||
v20.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
{ | ||
"name": "monorepo-root", | ||
"version": "1.0.0", | ||
"packageManager": "pnpm@7.12.1", | ||
"packageManager": "pnpm@8.10.2", | ||
"type": "module", | ||
"author": "\"Ian Wright\" <\"[email protected]\">", | ||
"scripts": { | ||
"build": "turbo run build", | ||
"build:package": "node scripts/choice build", | ||
"build:watch": "turbo run build --scope=@chart-io/* --no-deps -- -- -w", | ||
"dev": "turbo run build --scope=@chart-io/* --no-deps && turbo run dev --no-cache --parallel --continue", | ||
"changeset": "changeset", | ||
"clean": "rm -rf node_modules && pnpm -r clean", | ||
"dev": "turbo run build --scope=@chart-io/* --no-deps && turbo run dev --no-cache --parallel --continue", | ||
"graph": "turbo run build --graph=graph.html", | ||
"lint": "turbo run lint", | ||
"publish": "changeset publish", | ||
|
@@ -19,9 +18,13 @@ | |
"storybook": "pnpm --filter '@chart-io/react' storybook", | ||
"storybook:build": "pnpm --filter '@chart-io/react' build-storybook", | ||
"storybook:deploy": "pnpm --filter '@chart-io/*' deploy-storybook", | ||
"storybook:package": "node scripts/choice storybook", | ||
"storybook:test": "pnpm --filter '@chart-io/*' test-storybook", | ||
"storybook:report": "node scripts/choice coverage-storybook", | ||
"types": "turbo run types", | ||
"test": "turbo run test --concurrency=1", | ||
"test:coverage": "turbo run test --concurrency=1 -- --coverage", | ||
"test:report": "node scripts/choice test-coverage", | ||
"test:package": "node scripts/choice test --coverage", | ||
"test:watch": "node scripts/choice test --watchAll=true", | ||
"version": "changeset version" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
"name": "@chart-io/d3", | ||
"version": "0.10.0", | ||
"private": true, | ||
"packageManager": "pnpm@7.5.2", | ||
"packageManager": "pnpm@8.10.2", | ||
"description": "Provides a custom d3 bundle", | ||
"repository": "[email protected]:IPWright83/chart-io.git", | ||
"author": "Ian Wright - IPWright83", | ||
"main": "index.ts", | ||
"types": "index.ts", | ||
"scripts": { | ||
"clean": "rm -rf node_modules" | ||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf coverage" | ||
}, | ||
"np": { | ||
"publish": false, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@chart-io/detection", | ||
"version": "0.8.0", | ||
"private": true, | ||
"packageManager": "pnpm@7.26.2", | ||
"packageManager": "pnpm@8.10.2", | ||
"description": "Provides data type detection utilities for @chart-io", | ||
"repository": "[email protected]:IPWright83/chart-io.git", | ||
"author": "\"Ian Wright\" <\"[email protected]\">", | ||
|
@@ -14,7 +14,7 @@ | |
"build": "tsc --noEmit", | ||
"test": "jest --config jest.config.js", | ||
"test:coverage": "jest --config jest.config.js --coverage", | ||
"clean": "rm -rf node_modules", | ||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf coverage", | ||
"lint": "eslint src", | ||
"types": "tsc --noEmit", | ||
"publish": "" | ||
|
Oops, something went wrong.