GithubHelp home page GithubHelp logo

Comments (2)

bergos avatar bergos commented on July 16, 2024

Please use the prebuilt versions on the rdf-ext-dist-builder page if you want the code transpiled to ES5 for the browser. The custom builds are currently not transpiled to ES5. I will try to solve that problem till end of next week. Please also see the README of the dist-build, how the classes are attached to the window object.

from rdf-parser-jsonld.

ValeryIvanov avatar ValeryIvanov commented on July 16, 2024

Okay, I did manage to bypass this issue by setting Webpack to transpile those packages with Babel.

I will leave solution here for others

config/paths.js

  rdfExt: resolveApp('node_modules/rdf-ext'),
  rdfNormalize: resolveApp('node_modules/rdf-normalize'),
  rdfDatasetSimple: resolveApp('node_modules/rdf-dataset-simple'),
  rdfParserJsonLd: resolveApp('node_modules/rdf-parser-jsonld'),
  rdfSink: resolveApp('node_modules/rdf-sink'),

config/webpack.config.dev.js
config/webpack.config.prod.js

          // Process JS with Babel.
          {
            test: /\.(js|jsx)$/,
            include: [
                paths.appSrc,
                paths.rdfExt,
                paths.rdfNormalize,
                paths.rdfDatasetSimple,
                paths.rdfParserJsonLd,
                paths.rdfSink,
            ],
            loader: require.resolve('babel-loader'),
            options: {
              
              // This is a feature of `babel-loader` for webpack (not Babel itself).
              // It enables caching results in ./node_modules/.cache/babel-loader/
              // directory for faster rebuilds.
              cacheDirectory: true,
            },
          },

I guess it would still be nice to have them in ES5 format to not slow down builds.

from rdf-parser-jsonld.

Related Issues (6)

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.