@veolab/discoverylab 1.3.0 → 1.3.1
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +7 -0
- package/dist/templates/bundle/161.bundle.js +4462 -0
- package/dist/templates/bundle/161.bundle.js.map +1 -0
- package/dist/templates/bundle/208.bundle.js +3479 -0
- package/dist/templates/bundle/208.bundle.js.map +1 -0
- package/dist/templates/bundle/304.bundle.js +11 -0
- package/dist/templates/bundle/304.bundle.js.map +1 -0
- package/dist/templates/bundle/45.bundle.js +93932 -0
- package/dist/templates/bundle/45.bundle.js.map +1 -0
- package/dist/templates/bundle/624.bundle.js +205 -0
- package/dist/templates/bundle/624.bundle.js.map +1 -0
- package/dist/templates/bundle/63.bundle.js +11 -0
- package/dist/templates/bundle/63.bundle.js.map +1 -0
- package/dist/templates/bundle/69.bundle.js +14678 -0
- package/dist/templates/bundle/69.bundle.js.map +1 -0
- package/dist/templates/bundle/761.bundle.js +64 -0
- package/dist/templates/bundle/761.bundle.js.map +1 -0
- package/dist/templates/bundle/872.bundle.js +451 -0
- package/dist/templates/bundle/872.bundle.js.map +1 -0
- package/dist/templates/bundle/892.bundle.js +11 -0
- package/dist/templates/bundle/892.bundle.js.map +1 -0
- package/dist/templates/bundle/997.bundle.js +258 -0
- package/dist/templates/bundle/997.bundle.js.map +1 -0
- package/dist/templates/bundle/bundle.js +40546 -0
- package/dist/templates/bundle/bundle.js.map +1 -0
- package/dist/templates/bundle/favicon.ico +0 -0
- package/dist/templates/bundle/index.html +49 -0
- package/dist/templates/bundle/public/mockup-android-google-pixel-9-pro.png +0 -0
- package/dist/templates/bundle/public/mockup-android.png +0 -0
- package/dist/templates/bundle/public/mockup-ios-iphone-17-pro.png +0 -0
- package/dist/templates/bundle/source-map-helper.wasm +0 -0
- package/dist/templates/manifest.json +25 -0
- package/package.json +2 -2
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"name": "discoverylab",
|
|
13
13
|
"source": ".",
|
|
14
14
|
"description": "AI-powered app testing & marketing asset generator. Record mobile/web apps, run automated tests with Maestro & Playwright, and generate professional screenshots, GIFs, and test reports.",
|
|
15
|
-
"version": "
|
|
15
|
+
"version": "1.3.1",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "Anderson Melo"
|
|
18
18
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "discoverylab",
|
|
3
3
|
"description": "AI-powered app testing & marketing asset generator. Record mobile/web apps, run automated tests with Maestro & Playwright, and generate professional screenshots, GIFs, and test reports.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Anderson Melo",
|
|
7
7
|
"email": "anderson.90@gmail.com"
|
package/README.md
CHANGED
|
@@ -117,6 +117,13 @@ npm run build:host-runtime
|
|
|
117
117
|
|
|
118
118
|
Regular `npm run build` attempts this step in best-effort mode so the JS build still succeeds on machines without Rust, but distributable builds that need local capture should include the runtime binary.
|
|
119
119
|
|
|
120
|
+
Video templates are also staged automatically during `npm run build`. DiscoveryLab will copy templates from:
|
|
121
|
+
|
|
122
|
+
- `DISCOVERYLAB_TEMPLATE_SOURCE_DIR` if set
|
|
123
|
+
- otherwise `~/.discoverylab/templates`
|
|
124
|
+
|
|
125
|
+
into `dist/templates`, so npm packages and fresh installs keep the template toggle icons and Remotion renders working without a second manual copy step.
|
|
126
|
+
|
|
120
127
|
For a local distributable package that already contains the bundled runtime for the current host, run:
|
|
121
128
|
|
|
122
129
|
```bash
|