Skip to content

Commit

Permalink
add package.js for Meteor support
Browse files Browse the repository at this point in the history
  • Loading branch information
dVelopment committed Oct 14, 2015
1 parent b2f5b8b commit f71724b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions package.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
var options = {
"version": "1.3.2",
"where": "client",
"packageName": "dvelopment:angular-validation"
};

// meta data
Package.describe({
name: options.packageName,
version: options.version,
summary: 'Client-side Validation for AngularJS',
git: '[email protected]:huei90/angular-validation.git',
documentation: 'README.md'
});

Package.onUse(function(api) {
api.versionsFrom('[email protected]', '[email protected]');
api.use('angular:[email protected]', options.where);
api.addFiles('dist/angular-validation.js', options.where);
api.addFiles('dist/angular-validation-rule.js', options.where);
});

0 comments on commit f71724b

Please sign in to comment.