LumaPictures / meteor-jquery-select2

A Blaze UI select2 component that supports reactive search.
https://jquery-select2.meteor.com
MIT License
26 stars 5 forks source link

Missing install instructions #4

Open AliHichem opened 8 years ago

AliHichem commented 8 years ago

how to install with meteor ?

bluefangs commented 8 years ago
  1. Create a folder named packages in the root of your meteor app.
  2. inside the packages folder, do a it clone https://github.com/LumaPictures/meteor-jquery-select2.git
  3. within the newly created meteor-jquery-select2 folder, you will find a packages.js file. 4.edit the file and add this line into the packages.description object. name: "reactive:select"

Basically, it should look like this:

Package.describe({
  name: "reactive:select",
  summary: "A Blaze UI select2 component that supports reactive search."
});
  1. go back to meteor root dir, then --> meteor add reactive:select2

Done.

chazsolo commented 7 years ago

Is there no way to do this with Meteor's recommended installation for npm packages? Something like

meteor npm install --save meteor-jquery-select2