All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.build.diff-tarball.js Maven / Gradle / Ivy

The newest version!
const packlist = require('npm-packlist')
const npmContent = require('list-npm-contents');

npmContent('mapbox-gl').then(function(last_version_files) {
    packlist({ path: '.' }).then(function(new_version_files) {
        new_version_files = new_version_files.map(file => file.replace(/\/\/+/g, '/'));
        let diff_new = new_version_files.filter(x => !last_version_files.includes(x));
        let diff_last = last_version_files.filter(x => !new_version_files.includes(x));
        console.log(`${diff_new.length} files are about to be added in the new tarball`)
        diff_new.forEach(file => {
            console.log('+', file);
        });
        console.log(`${diff_last.length} files are about to be deleted in the new tarball`)
        diff_last.forEach(file => {
            console.log('-', file);
        });
    });
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy