Git Product home page Git Product logo

Comments (6)

sebmck avatar sebmck commented on May 18, 2024

If I run -t [babelify --only \"./index.js\" browserify-shim] and use es6import syntax I get an error within my imported shimmed dependency (polymer).

Because the --only argument will only run babelify on index.js. Checking out that repo and running:

$ npm run babel-before

Works without a problem.

from babelify.

reggi avatar reggi commented on May 18, 2024

Hey @sebmck thanks for the response! I'm getting an error. The only way I can get it to run is without using babelify. The only reason it works is because I'm not using es6 imports in that repo 😿

screen shot 2015-03-01 at 8 36 34 pm 1

For SEO:

 function element(name, prototype) {
    if (typeof name !== 'string') {
      var script = prototype || document._currentScript;
      prototype = name;
      name = script && script.parentNode && script.parentNode.getAttribute ?
          script.parentNode.getAttribute('name') : '';
      if (!name) {
        throw 'Element name could not be inferred.';
      }
    }
    if (getRegisteredPrototype(name)) {
      throw 'Already registered (Polymer) prototype for element ' + name;
    }
    // cache the prototype
    registerPrototype(name, prototype);
    // notify the registrar waiting for 'name', if any
    notifyPrototype(name);
  }
bundle-babel-before.js:3 Uncaught TypeError: Cannot set property 'esprima' of undefined
bundle-babel-after.js:6387 Uncaught HierarchyRequestError: Failed to execute 'appendChild' on 'Node': Nodes of type 'HTML' may not be inserted inside nodes of type '#document'.
bundle-without-babel.js:10400 Uncaught TypeError: Cannot read property 'resolveDom' of undefined

from babelify.

reggi avatar reggi commented on May 18, 2024

@sebmck It's just apparent that it's a babilfy issue then because it works without babelify. That's why I wen't with --only to stop babelify from processing polymer.

from babelify.

sebmck avatar sebmck commented on May 18, 2024

@reggi You should be ignoring bower_components anyway with:

$ browserify -t [babelify --ignore \"bower_components\" browserify-shim]

Since otherwise bower_components will be unnecessarily transformed.

from babelify.

zertosh avatar zertosh commented on May 18, 2024

@reggi I took a quick look at your repo and es6-polymer-babel-index-shimmed.js works with:

# backslashes for readability only
node ./node_modules/.bin/browserify ./index-es6.js \
  -t [ babelify --ignore bower_components ] \
  -t browserify-shim \
  --debug \
  > es6-polymer-babel-index-shimmed.js

You need to ignore bower_components because since it's not node_modules, browserify will apply the babelify transform to it. Also, transforms need to specified separately.

If you're curious about why polymer didn't like to get babeled, it's because it doesn't seem to work in strict mode. If you turn off that babel transform, it also works:

node ./node_modules/.bin/browserify ./index-es6.js \
  -t [ babelify --blacklist strict ] \
  -t browserify-shim \
  --debug \
  > es6-polymer-babel-index-shimmed.js

Though, it's more efficient to simply ignore bower_components since you don't want it transformed at all.

PS: There is no --test flag. You probably meant --debug for source maps.

from babelify.

zertosh avatar zertosh commented on May 18, 2024

This seems resolved to me.

from babelify.

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.