maxwell8888

Results 16 comments of maxwell8888

It would be great to provide an ES module build. Most javascript packages provide both a node.js build, and an ES module build. If you use tools like Webpack or...

I'm bundling for the browser, so don't want to include stream. Adding `preferBuiltins: false` option to `@rollup/plugin-node-resolve`, still fails with `Error: Could not load stream (imported by node_modules/papaparse/papaparse.js): ENOENT: no...

Line 913 is causing the problem: `var Duplex = require('stream').Duplex;`.

Updating to `var Duplex = false ? require("stream").Duplex : true;`, where false should be a check for whether the platform is a web browser, solves the problem in my local...

I seem to be having a similar problem parsing `"CREATE TABLE 'addressx' (\n id INTEGER PRIMARY KEY,\n 'name' TEXT NOT NULL,\n\n business_id INTEGER NOT NULL,\n\n FOREIGN KEY(business_id) REFERENCES business(id)\n)"`. It...

If you are using Inkscape: 1. Select everything and ungroup 2. Save as "Optimised Svg (*.svg)" In all cases I have tried, this has removed any transform attributes, then I...

This is because the app did not handle the case where shapes.txt is missing. I've just pushed a commit which adds a fallback to create trip paths from stop coordinates...

Beautiful haha! Do you mind sharing what operating system you are using?

> > I've just pushed a commit which adds a fallback to create trip paths from stop coordinates instead. > > Impressive work-around, many thanks for keeping this going, keen...