Using requirejs optimizer node module with Gulp

前端 未结 2 818
暖寄归人
暖寄归人 2021-02-06 13:45

There\'s gulp-requirejs plugin, but it\'s blacklisted with the following message: "use the require.js module directly".

The docs are quite sparse, how would I b

2条回答
  •  生来不讨喜
    2021-02-06 14:20

    I just ended up running the r.js build command with gulp-shell:

    var gulp = require('gulp'),
        shell = require('gulp-shell');
    
    // Run the r.js command, so simple taks :)
    gulp.task('scripts', shell.task([
        'r.js -o build/r/build.js'
    ]))
    

    It takes roughly 2 seconds to run, not too long at all.

    The r settings are defined in an external build.js file that Gulp knows nothing about.

提交回复
热议问题