Skip to content

Commit

Permalink
#1607 remove client typo in package.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Feb 20, 2015
1 parent 6e6f6cd commit 5e372c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions tasks/config/admin/templates/component-package.js
@@ -1,6 +1,3 @@
var
where = 'client' // Adds files only to the client
;

Package.describe({
name : 'semantic:ui-{component}',
Expand All @@ -13,5 +10,5 @@ Package.onUse(function(api) {
api.versionsFrom('1.0');
api.addFiles([
{files}
], where);
], 'client');
});
2 changes: 1 addition & 1 deletion tasks/config/admin/templates/css-package.js
Expand Up @@ -42,6 +42,6 @@ Package.onUse(function(api) {
files = walk();

api.versionsFrom('1.0');
api.addFiles(files, 'clent');
api.addFiles(files, 'client');

});
2 changes: 1 addition & 1 deletion tasks/config/admin/templates/less-package.js
Expand Up @@ -43,6 +43,6 @@ Package.onUse(function(api) {
api.versionsFrom('1.0');

api.use('less', 'client');
api.addFiles(files, 'clent');
api.addFiles(files, 'client');

});

0 comments on commit 5e372c3

Please sign in to comment.