You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is hacky, but you can run this script on post install or pre build:
`
const fs = require("fs");
const filePaths = [
"./node_modules/ionic-image-loader/dist/providers/image-loader.js",
"./node_modules/ionic-image-loader/dist/image-loader.module.js",
"./node_modules/ionic-image-loader/dist/providers/image-loader.d.ts",
];
let replace = "'@ionic-native/file'";
let replaceWith = "'@ionic-native/file/ngx'";
for(let filePath of filePaths) {
let lang = fs.readFileSync(filePath, "utf8");
lang = lang.replace(replace, replaceWith);
fs.writeFileSync(filePath, lang, "utf8")
}
No description provided.
The text was updated successfully, but these errors were encountered: