Git Product home page Git Product logo

Comments (4)

curist avatar curist commented on September 26, 2024

Will look into this soon, stay tuned.

2014-03-17 22:03 GMT+08:00 nmcclay [email protected]:

As far as I can tell grunt-bower copies package files in alphabetical
order. Which is sometimes something you might want to actually control. For
example I'm trying to use grunt-bower in conjunction with Sails.js
automatic asset linking and its almost there except for I have no control
over the order that packages are copied to the assets directory.

Could we possibly add a 'sort' parameter to the options property? Or
possibly a 'order' parameter to the packageSpecific options?

Thanks!

Reply to this email directly or view it on GitHubhttps://github.com//issues/19
.

from grunt-bower.

curist avatar curist commented on September 26, 2024

Have you come up with any implementation detail about this?
In my initial thought, sort option will take a callback, pass in all bower components' name as an array, and the callback function is responsible to return the names array in desired order.

Maybe it's not that convienient, or maybe it's all depends on one's javascript-fu.

from grunt-bower.

curist avatar curist commented on September 26, 2024

Another option would be take up to 2 parameters, high-priority and low-priority, both take names array. Copy order would be

  1. names in high-priority
  2. names not in high-priority nor low-priority
  3. names in low-priority

This would be much easier for users.

from grunt-bower.

nmcclay avatar nmcclay commented on September 26, 2024

Honestly I'd take pretty much anything that would let me configure this order at all. If you are in the granting wishes mood though, I'd love being able to configure a 'weight' property in the packageSpecific options.

Something like -

grunt.config.set('bower', {
    dev: {
        dest: '.tmp/public',
        js_dest: '.tmp/public/js',
        css_dest: '.tmp/public/styles',
        options: {
            packageSpecific: {
                "jquery": {
                    "weight" : -1 // lower weight copies before anything else
                },
                "font-awesome": {
                    "weight" : 1 // higher weight copies after everything else
                },
                "underscore": {
                    "weight" : -20 // would load before jquery's -1
                }
            }
        }
    }
});

from grunt-bower.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.