baer / pint

A small concurrent build system for Grunt.js
http://www.pintjs.com
MIT License
100 stars 4 forks source link

load-grunt-tasks for Pint #3

Closed sapegin closed 6 years ago

sapegin commented 10 years ago
    require('./build/css.js'),
    require('./build/javascript.js'),
    require('./build/static.js'),
    require('./build/test.js')

looks as bad as

    grunt.loadNpmTasks('grunt-contrib-concat');
    grunt.loadNpmTasks('grunt-contrib-uglify');
    grunt.loadNpmTasks('grunt-contrib-watch');

But in Grunt it could be fixed with load-grunt-tasks. Is there something like that in Pint?

paazmaya commented 10 years ago

Pint seems to depend on https://github.com/sindresorhus/load-grunt-tasks, at least according to package.json, so perhaps it is something that is already been investigated.... guessing.