73e8712ad8
* 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
39 lines
945 B
XML
39 lines
945 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<umbPackage>
|
|
<info>
|
|
<package>
|
|
<name><%= name %></name>
|
|
<version><%= version %></version>
|
|
<license url="<%= licenseUrl %>"><%= license %></license>
|
|
<url><%= url %></url>
|
|
<requirements>
|
|
<major>0</major>
|
|
<minor>0</minor>
|
|
<patch>0</patch>
|
|
</requirements>
|
|
</package>
|
|
<author>
|
|
<name><%= author %></name>
|
|
<website><%= authorUrl %></website>
|
|
</author>
|
|
<readme><![CDATA[<%= readmeContents %>]]></readme>
|
|
</info>
|
|
<DocumentTypes />
|
|
<Templates />
|
|
<Stylesheets />
|
|
<Macros />
|
|
<DictionaryItems />
|
|
<Languages />
|
|
<DataTypes />
|
|
<control />
|
|
<Actions />
|
|
<files>
|
|
<% files.forEach(function(file) { %>
|
|
<file>
|
|
<guid><%= file.guid %>.<%= file.ext %></guid>
|
|
<orgPath><%= file.dir %></orgPath>
|
|
<orgName><%= file.name %></orgName>
|
|
</file>
|
|
<% }); %>
|
|
</files>
|
|
</umbPackage> |