jackfranklin / pulldown

The minimal JavaScript package manager.
175 stars 7 forks source link

List sets #38

Closed jackfranklin closed 11 years ago

jackfranklin commented 11 years ago

I'd like to enhance the sets we have in the API. Once that's done, it would be good to add a command to list them:

$ pulldown --list-sets
-> Backbone [backbone.js, jquery.js, underscore.js]
-> Ember [ember.js, jquery.js, handlebars.js]
-> and so on

(API up for discussion)

tgvashworth commented 11 years ago

Yep, totes up for this. You could actually just hit / and list all the arrays:


{
  "html5shiv": "//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js",
  "underscore": "underscore.js",
  "backbone": [
    "backbone.js",
    "underscore",
    "jquery"
  ],
  "marionette": [
    "backbone",
    "backbone.marionette"
  ],
  "bootstrap": "http://twitter.github.io/bootstrap/assets/bootstrap.zip"
}
tgvashworth commented 11 years ago

Also pulldown ls?

jackfranklin commented 11 years ago

You could actually just hit / and list all the arrays

Yeah that works.

Also pulldown ls

Yeah.

Will open another issue in the API repo to discuss sets.