hive-react-kit 0.2.0 → 0.2.2
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/build.css +3031 -0
- package/dist/components/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -19,6 +19,7 @@ export { default as DescriptionModal } from './modals/DescriptionModal';
|
|
|
19
19
|
export { default as Modal } from './modals/Modal';
|
|
20
20
|
export { UpvoteList } from './UpvoteList';
|
|
21
21
|
export { CommentsList } from './CommentsList';
|
|
22
|
+
export { default as CommentsModal } from './comments/CommentsModal';
|
|
22
23
|
export { default as UserAccount } from './user/UserAccount';
|
|
23
24
|
export { default as UserFollowers } from './user/UserFollowers';
|
|
24
25
|
export { default as UserFollowing } from './user/UserFollowing';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hive-react-kit",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.esm.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"scripts": {
|
|
52
52
|
"dev": "vite",
|
|
53
53
|
"clean": "rm -rf dist dist-app && mkdir -p dist dist-app",
|
|
54
|
-
"build": "tsc -p tsconfig.build.json && vite build --mode lib && tsc --project tsconfig.build.json",
|
|
54
|
+
"build": "tsc -p tsconfig.build.json && vite build --mode lib && tsc --project tsconfig.build.json && npx @tailwindcss/cli -i src/build.css -o dist/build.css --content 'src/**/*.{ts,tsx}'",
|
|
55
55
|
"build:app": "vite build",
|
|
56
56
|
"build:lib": "tsc -p tsconfig.build.json && vite build --mode lib && tsc --project tsconfig.build.json && npx @tailwindcss/cli -i src/build.css -o dist/build.css --content 'src/**/*.{ts,tsx}'",
|
|
57
57
|
"build:all": "npm run clean && npm run build:lib && npm run build:app",
|