Code Monkey home page Code Monkey logo

Comments (4)

tomayac avatar tomayac commented on August 12, 2024

Thanks, @justinfagnani, let me address your comments.

Is there a reason to check-in the minified file? It can be published to npm and available via unpkg.com without being checked in.

I have fixed this. I wasn't aware of unpkg's super powers to deliver a file that isn't checked in. If you request https://unpkg.com/dark-mode-toggle, it now does the right thing. 🎉

Also, both the source file and dist file have .mjs extensions even though neither has an import or export.

I took some inspiration from https://tkent-google.github.io/std-switch/src/switch.mjs (that exports something, but with a comment on not wanting to do that). Strictly speaking, as the registration happens on window, does it need to export something?

Is there a reason to do UMD style at all? A module defined a scope, so you don't need a function scope to keep from accidentally creating globals. If you did, you could just use a block {} anyway.

I mostly use the IIFE pattern to help the minifier be more efficient.

from dark-mode-toggle.

justinfagnani avatar justinfagnani commented on August 12, 2024

I'd like to know more about that comment in std-switch. We export every custom element class in all the Polymer Project libraries. I don't know of any hazard of doing that and it allows for subclassing and other things.

As for the IIFE, minifiers should understand modules now and know that their top-level declarations are scoped. babel-plugin-minify-mangle-names has the topLevel option which should work for this. At the very least you can use a block instead of an IIFE, but that shouldn't be necessary.

Also, the .mjs extension is completely unnecessary too. Even Node is going to support modules with the .js extension ;)

from dark-mode-toggle.

tomayac avatar tomayac commented on August 12, 2024

Thanks, @justinfagnani, I have addressed the points you brought up (except for the .mjs bit after briefly consulting with @mathiasbynens).

I'd like to know more about that comment in std-switch. We export every custom element class in all the Polymer Project libraries. I don't know of any hazard of doing that and it allows for subclassing and other things.

Not sure, but the author is @tkent-google. It doesn't seem to be a problem in general.

As for the IIFE, minifiers should understand modules now and know that their top-level declarations are scoped. babel-plugin-minify-mangle-names has the topLevel option which should work for this. At the very least you can use a block instead of an IIFE, but that shouldn't be necessary.

I switched to terser-js, which doesn't have babel-plugin-minify-template-strings, but the top level minification there worked like a charm. I might eventually switch back to babel, still undecided.

from dark-mode-toggle.

justinfagnani avatar justinfagnani commented on August 12, 2024

awesome!

from dark-mode-toggle.

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.