Files
Archetype/config/package.manifest
T
Tom Fulton 73e8712ad8 Cleanup / update Gruntfile
* Use proper grunt-umbraco-package task
* Use new structure for --target, eliminate deploy step by making `dist` configurable
* Move package files to /config/
* Cleanup watch/copy tasks, add atBegin: true
* Prevent "cleaning" non-local destinations (dangerous?)
* Cleanup full/base path config
* Whitespace, misc
2014-03-18 22:50:11 -06:00

36 lines
821 B
Plaintext

{
propertyEditors: [
{
alias: "Imulus.Archetype",
name: "Archetype",
editor: {
view: "~/App_Plugins/Archetype/views/archetype.html",
valueType: "JSON"
},
prevalues: {
fields: [
{
label: "Config",
description: "(Required) Describe your Archetype.",
key: "archetypeConfig",
view: "/App_Plugins/Archetype/views/archetype.config.html",
validation: [
{
type: "Required"
}
]
},
{
label: "Hide Label",
description: "Hide the Umbraco property title and description, making the Archetype span the entire page width",
key: "hideLabel",
view: "boolean"
}
]
}
}
],
javascript: [
'~/App_Plugins/Archetype/js/archetype.js'
]
}