6 changed files with 73 additions and 7 deletions
Split View
Diff Options
-
1.gitignore
-
7README.md
-
43gulpfile.js
-
12meteor/README.md
-
1tasks/admin/release.js
-
16tasks/admin/templates/package.js
@ -0,0 +1,12 @@ |
|||
Packaging Semantic-UI for [Meteor.js](http://meteor.com), the most popular full-stack JavaScript framework on GitHub. |
|||
|
|||
# Meteor |
|||
|
|||
If you're new to Meteor, here's what the excitement is all about - [watch the first two minutes](https://www.youtube.com/watch?v=fsi0aJ9yr2o); you'll be hooked by 1:28. |
|||
|
|||
That screencast is from 2012. In the meantime, Meteor has become a mature JavaScript-everywhere web development framework with numerous [advantages](http://www.meteorpedia.com/read/Why_Meteor) over all other single-page application frameworks. |
|||
|
|||
|
|||
# WIP |
|||
|
|||
This is only a stub file... |
@ -0,0 +1,16 @@ |
|||
Package.describe({ |
|||
name: 'semantic:ui-{component}', |
|||
summary: 'Semantic UI - {Component}, Single component release of {component}', |
|||
version: '{package-version}', |
|||
git: 'git://github.com/Semantic-Org/UI-{Component}.git' |
|||
}); |
|||
|
|||
var where = 'client'; // Adds files only to the client
|
|||
|
|||
Package.onUse(function(api) { |
|||
api.versionsFrom('1.0'); |
|||
|
|||
api.addFiles([ |
|||
{package-files} |
|||
], where); |
|||
}); |
Write
Preview
Loading…
Cancel
Save