Giter Club home page Giter Club logo

Comments (5)

coderaiser avatar coderaiser commented on May 24, 2024 1

@richie50 you can use something like this to simplify things a bit :).

from putout.

richie50 avatar richie50 commented on May 24, 2024 1

@coderaiser I just needed it to remove IIFE from an old angularJs projects. I was porting the application from ES2015 to Yypescript. And by the way i was able to apply your above code to remove all the IIFE. Thanks mate

from putout.

coderaiser avatar coderaiser commented on May 24, 2024

Here is a short example for one file, could you please provide more deteails.

const {readFileSync, writeFileSync} = require('fs');
const putout = require('putout');

const input = readFileSync('./iife.js', 'utf8');
const output = putout(file, {
    plugins: [
        'remove-iife'
    ]
});

writeFileSync('./iife.js', output);

from putout.

richie50 avatar richie50 commented on May 24, 2024

@coderaiser for example src/ folder with .js files and sub directories with .js files recursively. I guess with the above script i can recursively go thru each .js file in all directories and sub directories and use the remove-iife and write the output to the said file.
Code below:

//requiring path and fs modules
const path = require('path');
const fs = require('fs');
//joining path of directory 
const directoryPath = path.join(__dirname, 'src/app');

let walk = (directoryPath, fileList = []) => {
    const files = fs.readdirSync(directoryPath);
    files.forEach(function(file) {
        let isDirectory = fs.statSync(path.join(directoryPath, file)).isDirectory();
        if (isDirectory) {
            filelist = walk(path.join(directoryPath, file), fileList); // recursively go thru the sub directory call 
        } else {
            //console.log(file, " is a file ", !isDirectory);
            var jsFilterRegex = /\.js$/;
            if (jsFilterRegex.test(file)) {
                console.log("Removing IIFE with putout plugin  ", file);
                const input = fs.readFileSync(path.join(directoryPath, file), 'utf8');
                /**
                 * This part of the code is not tested with the putout plugin but you get the idea
                 */
                const output = putout(file, {
                    plugins: [
                        'remove-iife'
                    ]
                });
                fs.writeFileSync(directoryPath, file, output);
                /** Not tested  */
            }
            fileList.concat(path.join(directoryPath, file)); // store the files
        }
    });
    return fileList;
};
let all_files = []
all_files = walk(directoryPath, all_files);

from putout.

coderaiser avatar coderaiser commented on May 24, 2024

Could you please tell me why do you need it? We can move out some stuff from putout cli into separate module to simplify using of such functionality in future :).

from putout.

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.