How to use the magix-combine.combine function in magix-combine

To help you get started, we’ve selected a few magix-combine examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github thx / magix-gallery / gulpfile.js View on Github external
gulp.task('rely', () => {
    combineTool.config({
        log: false,
        tmplFolder: 'dist',
        srcFolder: 'build'
    })
    return combineTool.combine().then(() => {
        console.log('complete');
    }).catch(ex => {
        console.log('gulpfile:', ex);
    });
});
github xinglie / game-diamond / gulpfile.js View on Github external
gulp.task('build', ['cleanBuild','copyImagesBuild'], function() {
    combineTool.config({
        compressCss: true
    });


    combineTool.combine().then(() => {
        gulp.src(srcFolder + '/**/*.js')
            .pipe(uglify({
                compress: {
                    drop_console: true
                },
                output: {
                    ascii_only: true
                }
            }))
            .pipe(gulp.dest(buildFolder));
    });
});

magix-combine

合并Magix View的html,js,css成一个js文件,并检测html,js,css中可能存在的问题

MIT
Latest version published 11 months ago

Package Health Score

50 / 100
Full package analysis