Skip to content

Commit 6e65c12

Browse files
committed
chore: update project configuration and add new files
- Updated homepage and repository URLs in package.json to reflect new ownership. - Added build command for storybook in package.json. - Introduced vercel.json for deployment configuration. - Added .github/FUNDING.yml for funding information. - Updated .gitignore to include new environment and build files.
1 parent b2cfe9c commit 6e65c12

4 files changed

Lines changed: 14 additions & 3 deletions

File tree

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: marklearst
2+
buy_me_a_coffee: marklearst

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ node_modules
33
storybook-static
44
.idea
55
.pnpm-store
6+
.vercel
7+
.env*.local
8+
.codex

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@abusix/hailstorm",
33
"version": "6.0.0-beta.2",
44
"description": "our own design/component library",
5-
"homepage": "https://github.com/abusix/hailstorm",
5+
"homepage": "https://github.com/marklearst/hailstorm",
66
"author": "abusix",
77
"license": "ISC",
88
"type": "module",
@@ -19,10 +19,10 @@
1919
"packageManager": "pnpm@10.27.0",
2020
"repository": {
2121
"type": "git",
22-
"url": "git+https://github.com/abusix/hailstorm.git"
22+
"url": "git+https://github.com/marklearst/hailstorm.git"
2323
},
2424
"bugs": {
25-
"url": "https://github.com/abusix/hailstorm/issues"
25+
"url": "https://github.com/marklearst/hailstorm/issues"
2626
},
2727
"scripts": {
2828
"dev": "pnpm run storybook",
@@ -40,6 +40,7 @@
4040
"build": "pnpm run clean && pnpm run build:rollup && pnpm run build:tailwind",
4141
"build:rollup": "NODE_ENV=production rollup -c",
4242
"build:icons": "svgr -- assets/icons",
43+
"build-storybook": "storybook build && NODE_ENV=production tailwindcss -o ./dist/styles/index.css --minify",
4344
"build:storybook": "storybook build",
4445
"build:tailwind": "NODE_ENV=production tailwindcss -o ./dist/styles/index.css --minify"
4546
},

vercel.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"buildCommand": "pnpm run build-storybook",
3+
"outputDirectory": "storybook-static",
4+
"framework": null
5+
}

0 commit comments

Comments
 (0)