Quick cleanup of packaging tasks

This commit is contained in:
Tom Fulton
2014-01-17 00:12:29 -07:00
parent 489628451b
commit 9d3f4e76db
8 changed files with 111 additions and 42 deletions
+9
View File
@@ -0,0 +1,9 @@
{
"name": "Archetype",
"version": "0.1.0",
"url": "http://github.com/imulus/archetype/",
"author": "Imulus",
"authorUrl": "http://imulus.com/",
"license": "MIT",
"licenseUrl": "http://opensource.org/licenses/MIT"
}
+8 -8
View File
@@ -3,18 +3,18 @@
<metadata>
<id>Archetype</id>
<version><%= version %></version>
<title>Archetype</title>
<authors>imulus, tomfulton</authors>
<owners>imulus, tomfulton</owners>
<title><%= name %></title>
<authors>imulus, kgiszewski, tomfulton</authors>
<owners>imulus, kgiszewski, tomfulton</owners>
<projectUrl>http://github.com/imulus/archetype</projectUrl>
<description><![CDATA[Archetype]]></description>
<description><![CDATA[Archetype for Umbraco]]></description>
<tags>umbraco</tags>
<iconUrl>http://github.com/imulus/archetype/raw/master/assets/logo.png</iconUrl>
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
<licenseUrl><%= licenseUrl %></licenseUrl>
</metadata>
<files>
<% for (var file in files) { %>
<file src="<%- files[file].path %>" target="<%= files[file].target %>" />
<% } %>
<% files.forEach(function(file) { %>
<file src="<%- file.path %>" target="<%= file.target %>" />
<% }); %>
</files>
</package>
+39
View File
@@ -0,0 +1,39 @@
<?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>
View File