You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, you could have a snap.manifest.json file with common fields,
and a snap.manifest.dev.json file that extends it with
development-specific fields:
// snap.manifest.json{"version": "1.0.0","proposedName": "My Snap","initialPermissions": {"endowment:network-access": {}}}
and
// snap.manifest.dev.json{"extends": "./snap.manifest.json","proposedName": "My Snap (development)","initialConnections": {"https://localhost:8000": {}}}
When running mm-snap watch --manifest snap.manifest.dev.json, the
resulting manifest will combine the fields from both files.
Add --preinstalled flag to build command to create preinstalled Snap bundle (#3805)