Skip to content

Commit

Permalink
build: add prepublish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
caro3801 committed May 30, 2024
1 parent 2952c4f commit e1f8d8d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,16 @@
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write lib/ stories/ .storybook/ tests/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build:storybook": "storybook build",
"test": "vitest",
"test:unit": "vitest run"
"test:unit": "vitest run",
"prepublish": "yarn build:lib",
"predeploy": "yarn build:storybook"
},
"main": "./dist/lib/murmur.umd.cjs",
"module": "./dist/lib/murmur.js",
Expand Down

0 comments on commit e1f8d8d

Please sign in to comment.