Skip to content

Commit

Permalink
Merge branch 'histoire-dev:main' into fix/usenuxtapp-mocking
Browse files Browse the repository at this point in the history
  • Loading branch information
juleshry authored Jul 24, 2024
2 parents 5162bd5 + 3814da9 commit 5cd8fd6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/examples/visual-regression-testing/lost-pixel.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Lost Pixel visual regression testing

Lost Pixel is a [modern open-source visual regression testing tool](https://github.com/lost-pixel/lost-pixel) that allows you to run self-hosted visual regression tests. [Lost Pixel Platofrm](https://lost-pixel.com) is for teams and is a cloud version of visual testing.
Lost Pixel is a [modern open-source visual regression testing tool](https://github.com/lost-pixel/lost-pixel) that allows you to run self-hosted visual regression tests. [Lost Pixel Platform](https://lost-pixel.com) is for teams and is a cloud version of visual testing.

## Setting up self-hosted visual testing

Expand Down
1 change: 1 addition & 0 deletions packages/histoire-controls/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
// Strict
"noImplicitAny": false,
"noImplicitThis": true,
// Output
"outDir": "dist",
"removeComments": false,
"sourceMap": false,
Expand Down
4 changes: 2 additions & 2 deletions packages/histoire-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -d",
"watch": "tsc -d -w --sourceMap"
"build": "rimraf dist && tsc",
"watch": "tsc -w --sourceMap"
},
"peerDependencies": {
"vite": "^2.9.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/histoire-shared/src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type GrayColorKeys = ColorKeys | '750' | '850' | '950'
export interface ResponsivePreset {
label: string
width: number
height: number
height?: number
}

export interface BackgroundPreset {
Expand Down
3 changes: 3 additions & 0 deletions packages/histoire-shared/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
// Strict
"noImplicitAny": false,
"noImplicitThis": true,
// Output
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"removeComments": false,
"sourceMap": false,
Expand Down
4 changes: 2 additions & 2 deletions packages/histoire/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"histoire": "./bin.mjs"
},
"scripts": {
"build": "rimraf dist && tsc -d",
"watch": "tsc -d -w --sourceMap",
"build": "rimraf dist && tsc",
"watch": "tsc -w --sourceMap",
"test": "vitest run",
"test:dev": "vitest"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/histoire/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
// Strict
"noImplicitAny": false,
"noImplicitThis": true,
// Output
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"removeComments": false,
"sourceMap": false,
Expand Down

0 comments on commit 5cd8fd6

Please sign in to comment.