Skip to content

Commit

Permalink
Merge pull request #143 from dVelopment/master
Browse files Browse the repository at this point in the history
add package.js for Meteor support
  • Loading branch information
Huei Tan committed Oct 17, 2015
2 parents b2f5b8b + 6fc3f06 commit 6f9403d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions package.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
var options = {
"version": "1.3.2",
"where": "client",
"packageName": "huei90:angular-validation"
};

// meta data
Package.describe({
name: options.packageName,
version: options.version,
summary: 'Client-side Validation for AngularJS',
git: 'https://github.com/huei90/angular-validation',
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',
'dist/angular-validation-rule.js'
], options.where);
});

0 comments on commit 6f9403d

Please sign in to comment.