Skip to content

0.2.1

Latest
Compare
Choose a tag to compare
@jjti jjti released this 08 May 02:03
· 1 commit to main since this release

Full Changelog: 0.2.0...0.2.1

changing globalObject in an attempt to get SSR working for SeqViz:

  output: {
    filename: "index.js",
    library: {
      name: package.name,
      type: "umd",
    },
    path: path.join(__dirname, "dist"),
    publicPath: "/dist/",
    umdNamedDefine: true,
    // https://stackoverflow.com/questions/64639839/typescript-webpack-library-generates-referenceerror-self-is-not-defined
    globalObject: 'this',
  },