iosart

Results 5 comments of iosart

Found an easy temporary workaround - essentially prevent node from trying to load sqlite3 and choking. Put this before you require @shopify/shopify-api ``` var Module = require('module'); var originalRequire =...

Try something like this: ``` import Module from 'module'; import { createRequire } from 'node:module'; var originalRequire = Module.prototype.require; Module.prototype.require = function() { if (arguments[0] === 'sqlite3') { console.log('Returning fake...

> Great to know. is it possible for us to patch in a semver-compliant, backwards compatible way? > > Also, would you mind if I change the issue name to...

> Sounds good on the rename. > > Regard the patch, I think as long as unit tests pass, I'm good with that. Do you want to do a PR?...

3 failures: 1.Reading From Files hbs file with complex yaml data and content: Input: ``` --- foo: bar version: 2 categories: - pages tags: - tests - examples - complex...