@dreamtree-org/twreact-ui 1.1.37 → 1.1.39
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/index.d.ts +1 -0
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export { StoreProvider } from "./store/index";
|
|
|
42
42
|
export { cn } from "./utils/cn.js";
|
|
43
43
|
export { Helpers } from "./utils/helpers.js";
|
|
44
44
|
export { EmitterClass as Emitter } from "./utils/emitter.js";
|
|
45
|
+
export * from "./types";
|
|
45
46
|
export { default as Toast, ToastContainer, useToast } from "./components/feedback/Toast.jsx";
|
|
46
47
|
export { useTheme, ThemeProvider } from "./hooks/useTheme";
|
|
47
48
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dreamtree-org/twreact-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.39",
|
|
4
4
|
"description": "A comprehensive React + Tailwind components library for building modern web apps",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Partha Preetham Krishna",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"build:js": "node scripts/version-bump.js && cross-env NODE_ENV=production rollup -c --no-sourcemap",
|
|
23
23
|
"dev": "cross-env NODE_ENV=development rollup -c -w",
|
|
24
24
|
"type-check": "tsc --noEmit",
|
|
25
|
+
"test:types": "npm run build:types && tsc -p test/types/tsconfig.json",
|
|
25
26
|
"test": "jest",
|
|
26
27
|
"test:watch": "jest --watch",
|
|
27
28
|
"test:coverage": "jest --coverage",
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"version:prepatch": "npm version prepatch && git push && git push --tags",
|
|
42
43
|
"version:preminor": "npm version preminor && git push && git push --tags",
|
|
43
44
|
"version:premajor": "npm version premajor && git push && git push --tags",
|
|
44
|
-
"release": "npm run type-check && npm run build && npm run test && npm run lint",
|
|
45
|
+
"release": "npm run type-check && npm run build && npm run test:types && npm run test && npm run lint",
|
|
45
46
|
"release:patch": "npm run release && npm run version:patch",
|
|
46
47
|
"release:minor": "npm run release && npm run version:minor",
|
|
47
48
|
"release:major": "npm run release && npm run version:major",
|