Skip to content

Commit

Permalink
pull in jquery-migrate for 0.7.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mizzao committed Feb 28, 2014
1 parent d308773 commit 939d50d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
24 changes: 13 additions & 11 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
Package.describe({
summary: "symbol-triggered autocompletion using Meteor collections"
summary: "symbol-triggered autocompletion using Meteor collections"
});

Package.on_use(function (api) {
api.use(['handlebars', 'templating'], 'client');
api.use(['coffeescript', 'jquery'], 'client');
api.use(['handlebars', 'templating'], 'client');
api.use(['coffeescript', 'jquery'], 'client');

// Our files
api.add_files([
'autocomplete.css',
'inputs.html',
'jquery.caretposition.js',
'autocomplete.coffee',
'templates.coffee'
], 'client');
// Required by caretposition.js right now
api.use('jquery-migrate');

// Our files
api.add_files([
'autocomplete.css',
'inputs.html',
'jquery.caretposition.js',
'autocomplete.coffee',
'templates.coffee'
], 'client');
});
4 changes: 3 additions & 1 deletion smart.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@
"author": "Andrew Mao (https://github.com/mizzao/)",
"version": "0.1.0",
"git": "https://github.com/mizzao/meteor-autocomplete.git",
"packages": {}
"packages": {
"jquery-migrate": ""
}
}

0 comments on commit 939d50d

Please sign in to comment.