@o3r/core
Version:
Core of the Otter Framework
22 lines (21 loc) • 593 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"$id": "AppVersionBuilderSchema",
"title": "App version builder",
"description": "Set the app version",
"properties": {
"file": {
"type": "string",
"description": "File where to replace the version",
"default": "src/environments/environment.prod.ts"
},
"versionToReplace": {
"type": "string",
"description": "String to be replaced by the version",
"default": "%VERSION%"
}
},
"additionalProperties": false,
"required": ["file", "versionToReplace"]
}