td-plots 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Histogram.d.ts +0 -1
- package/dist/index.esm.js +55 -20
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +54 -19
- package/dist/index.js.map +1 -1
- package/package.json +17 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "td-plots",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Custom React plotting components built with Plotly.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,6 +13,21 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "npm run clean && npm run build:rollup && npm run build:types",
|
|
18
|
+
"build:rollup": "rollup -c",
|
|
19
|
+
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
|
|
20
|
+
"build:watch": "rollup -c --watch",
|
|
21
|
+
"build:types:watch": "tsc --project tsconfig.build.json --emitDeclarationOnly --watch",
|
|
22
|
+
"dev": "npm run build:watch",
|
|
23
|
+
"dev:full": "npm run build:types:watch & npm run build:watch",
|
|
24
|
+
"prepublishOnly": "npm run build",
|
|
25
|
+
"clean": "rm -rf dist",
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"storybook": "storybook dev -p 6006",
|
|
28
|
+
"build-storybook": "storybook build",
|
|
29
|
+
"chromatic": "npx chromatic"
|
|
30
|
+
},
|
|
16
31
|
"keywords": [
|
|
17
32
|
"react",
|
|
18
33
|
"plotly",
|
|
@@ -74,19 +89,5 @@
|
|
|
74
89
|
"vitest": "^3.2.4",
|
|
75
90
|
"vitest-browser-react": "^1.0.0",
|
|
76
91
|
"vitest-plugin": "link:@storybook/addon-vitest/vitest-plugin"
|
|
77
|
-
},
|
|
78
|
-
"scripts": {
|
|
79
|
-
"build": "npm run clean && npm run build:rollup && npm run build:types",
|
|
80
|
-
"build:rollup": "rollup -c",
|
|
81
|
-
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
|
|
82
|
-
"build:watch": "rollup -c --watch",
|
|
83
|
-
"build:types:watch": "tsc --project tsconfig.build.json --emitDeclarationOnly --watch",
|
|
84
|
-
"dev": "npm run build:watch",
|
|
85
|
-
"dev:full": "npm run build:types:watch & npm run build:watch",
|
|
86
|
-
"clean": "rm -rf dist",
|
|
87
|
-
"test": "vitest run",
|
|
88
|
-
"storybook": "storybook dev -p 6006",
|
|
89
|
-
"build-storybook": "storybook build",
|
|
90
|
-
"chromatic": "npx chromatic"
|
|
91
92
|
}
|
|
92
|
-
}
|
|
93
|
+
}
|