Browse Source

finalized package.js templates

pull/1607/head
Luca Mussi 9 years ago
parent
commit
2a0c628d5f
2 changed files with 6 additions and 7 deletions
  1. 3
      tasks/admin/templates/package-component.js
  2. 10
      tasks/admin/templates/package.js

3
tasks/admin/templates/package-component.js

@ -1,9 +1,8 @@
Package.describe({
name: 'semantic:ui-{component}',
summary: 'Semantic UI - {Component}, Single component release of {component}',
summary: 'Semantic UI - {Component} (official): Single component release of {component}',
version: '{package-version}',
git: 'git://github.com/Semantic-Org/UI-{Component}.git',
//readme: 'git://github.com/Semantic-Org/UI-{Component}/tree/master/meteor/README.md'
});
var where = 'client'; // Adds files only to the client

10
tasks/admin/templates/package.js

@ -1,9 +1,9 @@
Package.describe({
name: 'semantic:ui',
summary: 'Semantic empowers designers and developers by creating a shared vocabulary for UI.',
summary: 'Semantic (official): a UI component framework based around useful principles from natural language.',
version: '{package-version}',
git: 'git://github.com/Semantic-Org/Semantic-UI.git#1.0',
readme: 'https://github.com/Semantic-Org/Semantic-UI/blob/1.0/meteor/README.md'
git: 'git://github.com/Semantic-Org/Semantic-UI.git',
readme: 'https://github.com/Semantic-Org/Semantic-UI/blob/master/meteor/README.md'
});
var where = 'client'; // Adds files only to the client
@ -11,8 +11,8 @@ var where = 'client'; // Adds files only to the client
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.addFiles([{package-files}
], where);
api.addFiles([
{package-files} ], where);
});
Package.onTest(function(api) {

Loading…
Cancel
Save