@histoire/shared 0.17.0 → 0.17.5

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.
@@ -140,6 +140,7 @@ export interface ServerMarkdownFile {
140
140
  isRelatedToStory: boolean;
141
141
  frontmatter?: any;
142
142
  html?: string;
143
+ content?: string;
143
144
  storyFile?: ServerStoryFile;
144
145
  }
145
146
  export interface ServerStory {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@histoire/shared",
3
- "version": "0.17.0",
3
+ "version": "0.17.5",
4
4
  "description": "Shared utilities for Histoire",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -30,14 +30,14 @@
30
30
  "chokidar": "^3.5.3",
31
31
  "pathe": "^0.2.0",
32
32
  "picocolors": "^1.0.0",
33
- "@histoire/vendors": "^0.17.0"
33
+ "@histoire/vendors": "^0.17.4"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "vite": "^2.9.0 || ^3.0.0 || ^4.0.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "typescript": "^4.9.5",
40
- "vite": "^4.4.9"
40
+ "vite": "^4.5.0"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "rimraf dist && tsc -d",
@@ -148,6 +148,7 @@ export interface ServerMarkdownFile {
148
148
  isRelatedToStory: boolean
149
149
  frontmatter?: any
150
150
  html?: string
151
+ content?: string
151
152
  storyFile?: ServerStoryFile
152
153
  }
153
154