Code Monkey home page Code Monkey logo

Comments (7)

gfranko avatar gfranko commented on July 18, 2024

To use a "global" instead of a local variable, you just need to set the globalObject option to true.

Also, I am about to add a new option, called prefixTransform, that should help you adjust how AMDClean normalizes (aka prefixes) module names. This option will be included with the next version of AMDClean (I am shooting to release tomorrow).

prefixTransform Example

    amdclean.clean({
        'code': 'var example = require("util/anotherModule");',
        'prefixTransform': function(moduleName) {
            return moduleName.substring(moduleName.lastIndexOf('_') + 1, moduleName.length);
        }
    });

This would result in the following code: var example=anotherModule;

from amdclean.

gfranko avatar gfranko commented on July 18, 2024

You can now use the prefixTransform option with the AMDClean 1.2.1 release.

from amdclean.

vonWolfehaus avatar vonWolfehaus commented on July 18, 2024

Hey, elegant solution. Thank you!

from amdclean.

gfranko avatar gfranko commented on July 18, 2024

@vonWolfehaus Glad you like it! Does this work for you? Do you need anything else?

from amdclean.

vonWolfehaus avatar vonWolfehaus commented on July 18, 2024

It does work, much appreciated. At least I think so, as what I'm seeing might be another issue entirely. I have an inline require: return require('core/Kai').registerComponents(arguments);. The first part got replaced with core_Kai, and not the expected global-prefixed version, von.core_Kai. It worked before I upgraded to 1.2.1 but maybe I did something different? The repo is here if you want to check out the gulpfile. It looks like a special case, where it's expecting core_Kai to be defined in the arguments array, but it isn't. Any suggestions?

from amdclean.

vonWolfehaus avatar vonWolfehaus commented on July 18, 2024

The file in question is this one, forgot to mention.

from amdclean.

gfranko avatar gfranko commented on July 18, 2024

#32

from amdclean.

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.