heroshot 0.14.2 → 0.15.0
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.
- package/README.md +3 -1
- package/dist/cli/cli.js +195 -148
- package/dist/mcp/index.js +1 -1
- package/dist/{snippet-B6Lg_Ant.js → snippet-Fc-PkcTD.js} +15 -5
- package/editor/dist/editor.js +2226 -1891
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroshot",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Define your screenshots once, update them forever with one command",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Ondrej Machala",
|
|
@@ -191,6 +191,7 @@
|
|
|
191
191
|
"test:cli": "vitest run --config vitest.cli.config.ts",
|
|
192
192
|
"test:editor": "vitest run --config editor/vite.config.ts",
|
|
193
193
|
"test:editor:coverage": "vitest run --config editor/vite.config.ts --coverage",
|
|
194
|
+
"test:examples": "for dir in sveltekit nextjs nuxt vitepress docusaurus; do echo \"Testing $dir...\" && (cd integrations/examples/$dir && npx playwright test) || exit 1; done",
|
|
194
195
|
"test:editor:e2e": "playwright test --config editor/playwright.config.ts",
|
|
195
196
|
"test:editor:demo": "playwright test --config editor/playwright.demo.config.ts",
|
|
196
197
|
"typecheck": "tsc --noEmit --incremental --tsBuildInfoFile node_modules/.cache/tsbuildinfo",
|