Releases: Lattice-Automation/seqparse
Releases · Lattice-Automation/seqparse
Release list
0.2.2
What's Changed
- Upgrading dependencies by @guzmanvig in #23
New Contributors
- @guzmanvig made their first contribution in #23
Full Changelog: 0.2.1...0.2.2
0.2.1
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',
},
0.2.0
Full Changelog: 0.1.10...0.2.0
- add synchronous
parseFilemethod for parsing a file to a sequence:
import { parseFile } from "seqparse"
const part = parseFile("f.gb")- remove
pinodependency