Code Monkey home page Code Monkey logo

Comments (9)

gersongoulart avatar gersongoulart commented on August 19, 2024

I'd say all of them are good options, and the best approach would depend on the project. For the main product at the company I work at, for example, I'd like to adopt the 1).

from aura.

addyosmani avatar addyosmani commented on August 19, 2024

imo, 1) probably works best for quite a few scenarios.

from aura.

steffenmllr avatar steffenmllr commented on August 19, 2024

Has anybody an example for optimizing a widget into a single file via grunt? I tried a couple of options but I'm stuck. Would be great if someone could share an example

from aura.

hkjorgensen avatar hkjorgensen commented on August 19, 2024

Thank you @gersongoulart and @addyosmani for the response.

@DigitalHero i've investigated some options to build it like option 1) and here is a dirty wip snippet from my grunt:requirejs config - you might have to change the the src path:

modules: (function(){
            var fs = require('fs'),
                src = './js/widgets',
                output = [];

            //Add the main file
            output.push({
                name: 'app',
                include: [ 'text' ]
            });

            fs.readdirSync(src).forEach(function(dirName){
                output.push({
                    name: 'widgets/' + dirName + '/main',
                    exclude: ['sandbox', 'text']
                });
            });

            return output;
        })(),
        removeCombined: true

from aura.

steffenmllr avatar steffenmllr commented on August 19, 2024

Thanks @henrikkok, your snippet works great. I think this should be included in the aura grunt.js

from aura.

addyosmani avatar addyosmani commented on August 19, 2024

@dustinboston what do you think about us including this in our grunt file by default?

from aura.

hkjorgensen avatar hkjorgensen commented on August 19, 2024

@DigitalHero glad it helped :-)
@addyosmani I can create a pull request, if the build process gets fixed (it's breaking atm).

from aura.

addyosmani avatar addyosmani commented on August 19, 2024

Thanks @henrikkok. I'll see what I can do to fix the build process tonight.

from aura.

dustinboston avatar dustinboston commented on August 19, 2024

@addyosmani Yes. That's perfect. We should document that the convention of main.js is a requirement for the build process. @henrikkok Nice work. Looks great.

from aura.

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.