bespokejs / bespoke

DIY Presentation Micro-Framework
http://markdalgleish.com/projects/bespoke.js/
MIT License
4.68k stars 443 forks source link

Add substeps, notes, history and sync plugins to the list #37

Closed medikoo closed 10 years ago

medikoo commented 10 years ago

Recently I created few plugins. It'll be great to see them in the list

markdalgleish commented 10 years ago

The plugin API has now changed to better support Browserify usage. Luckily you're plugins are already targeting Browserify, so it should be an easy upgrade. Would you be able to update your plugins to the following form?

module.exports = function(options) {
  return function(deck) {
    // plugin logic...
  };
};

I'm happy to do this for you if you don't have the time :)

medikoo commented 10 years ago

I'll handle that sometime next week. I let you know. Thanks!

medikoo commented 10 years ago

I've updated (and tested) all plugins, so they work with Bespoke 1.0, but I didn't do any update to this pull request as I'm not sure where should they be listed now.

markdalgleish commented 10 years ago

Sorry to go back on what I've said previously, but since updating the plugin list is too manual, I've opted instead to just link to the npm site, browsing the bespoke-plugin keyword. At some point I might look into creating a better interface for browsing plugins.