Skip to content

Commit

Permalink
v0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjavi committed Mar 27, 2024
1 parent de7a2d9 commit dce9948
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
7 changes: 5 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.14.0",
"version": "0.14.1",
"npmClient": "pnpm",
"packages": ["packages/*", "examples/*"]
"packages": [
"packages/*",
"examples/*"
]
}
8 changes: 6 additions & 2 deletions packages/storylite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storylite/storylite",
"version": "0.14.0",
"version": "0.14.1",
"description": "A lightweight alternative to StoryBook, built on top of Vite⚡️. This package contains the React app.",
"license": "MIT",
"type": "module",
Expand All @@ -14,7 +14,11 @@
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md", "LICENSE"],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
Expand Down
16 changes: 12 additions & 4 deletions packages/vite-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storylite/vite-plugin",
"version": "0.14.0",
"version": "0.14.1",
"description": "A lightweight alternative to StoryBook. This package contains the Vite plugin.",
"license": "MIT",
"type": "module",
Expand All @@ -18,11 +18,19 @@
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": ["dist/index.d.ts"],
"virtual": ["dist/virtual-modules.d.ts"]
"*": [
"dist/index.d.ts"
],
"virtual": [
"dist/virtual-modules.d.ts"
]
}
},
"files": ["dist", "README.md", "LICENSE"],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
Expand Down

0 comments on commit dce9948

Please sign in to comment.