Hello,
Since v1.7.16, I have this error when I am trying to deploy my app to my Digital Ocean server with MUP:
Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
at Object.require (/bundle/bundle/programs/server/boot.js:200:17)
at meteorInstall.node_modules.meteor.ostrio:files.files.coffee.js (/bundle/bundle/programs/server/packages/ostrio_files.js:48:12)
at fileEvaluate (packages/modules-runtime.js:197:9)
at require (packages/modules-runtime.js:120:16)
at /bundle/bundle/programs/server/packages/ostrio_files.js:4072:15
at /bundle/bundle/programs/server/packages/ostrio_files.js:4083:3
at /bundle/bundle/programs/server/boot.js:303:34
at Array.forEach (native)
at Function._.each._.forEach (/bundle/bundle/programs/server/node_modules/underscore/underscore.js:79:11)
at /bundle/bundle/programs/server/boot.js:128:5
I added fs-extra to my app, it is in my package.json file, and also locally I have no issues, it's only when I deploy my app to my live server. I have other NPM packages that don't pose any issue. Any idea how to fix that? Thanks!
Me too on Heroku
@marcoschwartz the issue is probably due to the change below, I am not sure what was @dr-dimitru intention, probably to lock the NPMs on particular versions bundled with the Meteor package and not versions of the packages.js. Let's see what he says

Hello @marcoschwartz , @paulincai ,
This is fix for more ugly error described in #417. Please check #417 thread.
I believe it can be fixed with:
meteor npm install fs-extra --save
Let me know if it works for you
@dr-dimitru @marcoschwartz tried that, even took it to Heroku although I knew nothing was going to change but just to make sure that I don't have to lie to you :).
Your suggestion only works locally where you avail of the meteor commands but you cannot do that on Heroku. So if I run 'meteor npm.....' when I deploy to Heroku I still deploy the same thing as before, namely the unchanged package.json file. So it doesn't work. I tried a prayer too and invoked some mythological deities
All ok on local dev
package.json is unchanged, have you forgot --save flag?meteor build before deploy to Heroku?I had 'fs-extras' installed without meteor before the npm command and with --save so I could see it under dependencies in packages.json. I uninstalled with --save and installed with meteor npm install fs-extra --save so it added back to packages.json under dependecies....so no change to the repo. Heroku installs the package cause I can see it in the code but I think your main js files calles the package with Npm.require('fs-extra') instead of simply require('fs-extra') and us and Digital Ocean doesn't interpret that...I'm thinking.
Heroku does the build, I only push to master. See below (https://github.com/AdmitHub/meteor-buildpack-horse.git#beta) :

@dr-dimitru replying your message in the other issue conversation:
Really don't know what to say. I deleted my box twice and rebuild new. Code works on local but not on Heroku
Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
May 20 08:01:17 app app/web.1: at Object.require (/app/.meteor/heroku_build/app/programs/server/boot.js:200:17)
May 20 08:01:17 app app/web.1: at meteorInstall.node_modules.meteor.ostrio:files.files.coffee.js (packages/ostrio_files/files.coffee:8:18)
May 20 08:01:17 app app/web.1: at fileEvaluate (packages/modules-runtime.js:197:9)
May 20 08:01:17 app/web.1: at require (packages/modules-runtime.js:120:16)
May 20 08:01:17 app app/web.1: at /app/.meteor/heroku_build/app/programs/server/packages/ostrio_files.js:4388:15
May 20 08:01:17 app/web.1: at /app/.meteor/heroku_build/app/programs/server/packages/ostrio_files.js:4399:3
May 20 08:01:17 app/web.1: at /app/.meteor/heroku_build/app/programs/server/boot.js:303:34
May 20 08:01:17 app/web.1: at Array.forEach (native)
May 20 08:01:17 app/web.1: at Function._.each._.forEach (/app/.meteor/heroku_build/app/programs/server/node_modules/underscore/underscore.js:79:11)
May 20 08:01:17 app/web.1: at /app/.meteor/heroku_build/app/programs/server/boot.js:128:5
"preinstall": "cd ./programs/server && npm install",, see hereHave you tried steps from #417 ?
Especially this one ?
Have you tried to install packages mentioned in this diff ?
I tried all the suggestions above, still the same error while trying to deploy with MUP, locally the app still works perfectly fine.
Can't say much about MUP.
Yes, worked last night with 1.7.15 :)
@macrozone could you please try with adding next two lines to package.json:
{
"dependencies": {
"meteor-deque": "*",
"meteor-node-stubs": "^0.2.5"
}
}
And then run:
meteor npm install --save
Could you post your current package.json?
fs-extra might be there, but it may be a wrong version.
Check what meteor npm outdated says
I just tried that, it resulted in the same error. Sure thing, here is my package.json dependencies:
"dependencies": {
"aws-sdk": "^2.54.0",
"babel-runtime": "",
"bcrypt": "",
"chart.js": "^2.5.0",
"cheerio": "",
"file-type": "^4.3.0",
"fs-extra": "^3.0.1",
"html-minifier": "^3.3.3",
"jsmediatags": "",
"meteor-node-stubs": "^0.2.5",
"meteor-deque": "*",
"throttle": "^1.0.3"
},
@marcoschwartz is it okay to have babel-runtime, bcrypt and other packages without version? (I'm just curious), or you have removed it before posting on purpose?
Anyways I'm suggesting to:
meteor remove ostrio:files; meteor add ostrio:files;package.json (with packages versions);./node_modules;meteor reset (if possible, as __this will drop local MongoDB__);meteor npm install --save.I'm pretty sure you will end up with same results as in 417.
@dr-dimitru I tried everything that you suggested. Everything. Unfortunately nothing worked and it is already far too much time wasted in troubleshooting.
I had to go a separate way and built a local package with the only amendment that I am doing require('package') instead Npm.require('package'). All ok now and I will move on for the time being.
@paulincai thanks a lot for tests, I guess I'll move package to ES6 and imports for the 1.8 (should be the next release), to solve those annoying errors, btw, is this happens for you using one click install with demo app?
It uses v1.7.16, and works like a charm on my end, it's actually the https://files.veliov.com
@dr-dimitru The one click install is a no-go for me. I need to get it through the repository. It is impossible to manage development and pipelines with multiple developers if you don't do everything through the repo (git). Secondly, I cannot do local builds (time wise), I am pushing to Master(auto to Heroku) 15-20 times a day and make sure things are right for the testing mobiles which are connected 'live'. Each deploy takes 6 minutes and need to get some people in my team and need to have structure in place to make their onboarding easy. So, I know you wanted to know if that routine worked but unfortunately I didn't try it.
The one click install is a no-go for me. I need to get it through the repository. It is impossible to manage development and pipelines with multiple developers if you don't do everything through the repo (git).
I meant to try it for the test reasons.
So, I know you wanted to know if that routine worked but unfortunately I didn't try it.
Ok
I also just tried all the steps proposed by @dr-dimitru , still the same error. Therefore for now I'll stick to 1.7.15 & wait for the 1.8 release as you said :)
Can't find npm module 'file-type'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
@alexgzhou have you seen #417 ?
meteor npm install --save file-type
Or downgrade to v1.7.15
meteor remove ostrio:files
meteor add ostrio:[email protected]
@dr-dimitru v1.7.13 works for me, when i update to v1.7.15 yesterday, i have the error of Can't find npm module 'throttle'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
so i downgrade to 1.7.13, and just before i saw 1.7.16 was published, i thought the problem maybe solved, but with no luck~
I will type your tips and feedback soon~
@dr-dimitru solved~~~ with meteor npm install --save file-type
@alexgzhou great.
@dr-dimitru My projects do rely on your wonderful works, thank you~
@alexgzhou Appreciated, this means a lot to me.
Getting the same error while running unit tests with the practicalmeteor:mocha package.
Neither meteor npm install --save fs-extra nor downgrading to version 1.7.15 has worked.
@edwinmp thank you for info, I'll wait for v1.4.4.3, there is minor changes to isobuild, idk if it's related, but hope it will be fixed.
Anyways it's weird, as you can see at this thread and #417 .
Everyone has it's own solution, for someone only v1.7.13 is works, for others v1.7.14, for you v1.7.15. Many other users reported installing missed NPM package solves issue only locally...
I can confirm that the problem is still present with v.1.7.16 & Meteor 1.4.4.3, just tried it at the moment. So for now reverted again to v.1.7.15
+1 I'm seeing this on Meteor 1.5 (ostrio:files 1.7.15 and 1.7.16 both produce the same symptom).
@sotarules thank you for report, update is coming soon.
Please let me know what of the previous releases work for you.
Have you tried to meteor npm install missed packages?
Yes, I just tried two commands:
meteor npm install --save fs-extra
meteor npm install --save file-type
This seems to have fixed it. Right now I'm running 1.7.15.
@sotarules thanks a lot
Adding fs-extra and file-type only helps locally but will not help if meteor build is used...
I can confirm what @pozylon has stated, namely that adding fs-extra and file-type manually with meteor npm _only_ helps the development environment. When attempting to run a bundle in production, the system throws the same errors as reported earlier:
/home/ubuntu/bundles/sherpa/bundle/programs/server/node_modules/fibers/future.js:280
throw(ex);
^
Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
at Object.require (/home/ubuntu/bundles/sherpa/bundle/programs/server/boot.js:230:17)
at meteorInstall.node_modules.meteor.ostrio:files.files.coffee.js (packages/ostrio_files/files.coffee:8:18)
at fileEvaluate (packages/modules-runtime.js:333:9)
at require (packages/modules-runtime.js:228:16)
at /home/ubuntu/bundles/sherpa/bundle/programs/server/packages/ostrio_files.js:4394:15
at /home/ubuntu/bundles/sherpa/bundle/programs/server/packages/ostrio_files.js:4405:3
at /home/ubuntu/bundles/sherpa/bundle/programs/server/boot.js:338:34
at Array.forEach (native)
at Function._.each._.forEach (/home/ubuntu/bundles/sherpa/bundle/programs/server/node_modules/underscore/underscore.js:79:11)
at /home/ubuntu/bundles/sherpa/bundle/programs/server/boot.js:158:5
@sotarules thank you for update. Could you in terms of testing try cd ./programs/server && npm install?
@dr-dimitru I tried this:
ubuntu@v-as-sherpa:~/bundles/sherpa/bundle$ cd programs/server
ubuntu@v-as-sherpa:~/bundles/sherpa/bundle/programs/server$ sudo npm install
npm WARN package.json [email protected] No description
npm WARN package.json [email protected] No repository field.
npm WARN package.json [email protected] No README data
npm WARN package.json [email protected] No license field.
npm WARN cannot run in wd [email protected] node npm-rebuild.js (wd=/home/ubuntu/bundles/sherpa/bundle/programs/server)
ubuntu@v-as-sherpa:~/bundles/sherpa/bundle/programs/server$
Not sure if that worked correctly as you had expected, but after doing that and restarting, I'm still getting this:
/home/ubuntu/bundles/sherpa/bundle/programs/server/node_modules/fibers/future.js:280
throw(ex);
^
Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
at Object.require (/home/ubuntu/bundles/sherpa/bundle/programs/server/boot.js:230:17)
at meteorInstall.node_modules.meteor.ostrio:files.files.coffee.js (packages/ostrio_files/files.coffee:8:18)
at fileEvaluate (packages/modules-runtime.js:333:9)
at require (packages/modules-runtime.js:228:16)
at /home/ubuntu/bundles/sherpa/bundle/programs/server/packages/ostrio_files.js:4394:15
at /home/ubuntu/bundles/sherpa/bundle/programs/server/packages/ostrio_files.js:4405:3
at /home/ubuntu/bundles/sherpa/bundle/programs/server/boot.js:338:34
at Array.forEach (native)
at Function._.each._.forEach (/home/ubuntu/bundles/sherpa/bundle/programs/server/node_modules/underscore/underscore.js:79:11)
at /home/ubuntu/bundles/sherpa/bundle/programs/server/boot.js:158:5
FYI for others watching this thread, I tried removing fs-extra and file-type and then tried:
1.7.13
1.7.14
1.7.15
1.7.16
In all cases, I got this in the development environment:
W20170601-15:03:57.983(-7)? (STDERR) C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\node_modules\fibers\future.js:280
W20170601-15:03:58.046(-7)? (STDERR) throw(ex);
W20170601-15:03:58.048(-7)? (STDERR) ^
W20170601-15:03:58.049(-7)? (STDERR)
W20170601-15:03:58.051(-7)? (STDERR) Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
W20170601-15:03:58.052(-7)? (STDERR) at Object.require (C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\boot.js:230:17)
W20170601-15:03:58.053(-7)? (STDERR) at meteorInstall.node_modules.meteor.ostrio:files.files.coffee.js (packages/ostrio_files/files.coffee:8:18)
W20170601-15:03:58.054(-7)? (STDERR) at fileEvaluate (packages\modules-runtime.js:333:9)
W20170601-15:03:58.055(-7)? (STDERR) at require (packages\modules-runtime.js:228:16)
W20170601-15:03:58.055(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\packages\ostrio_files.js:4394:15
W20170601-15:03:58.056(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\packages\ostrio_files.js:4405:3
W20170601-15:03:58.057(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\boot.js:338:34
W20170601-15:03:58.058(-7)? (STDERR) at Array.forEach (native)
W20170601-15:03:58.059(-7)? (STDERR) at Function._.each._.forEach (C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\node_modules\underscore\underscore.js:79:11)
W20170601-15:03:58.060(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\boot.js:158:5
=> Exited with code: 1
I should clarify that I'm using Windows 7 to develop and build (then install on Ubuntu 16.04). Not sure if this is a consideration.
I should clarify that I'm using Windows 7 to develop and build (then install on Ubuntu 16.04). Not sure if this is a consideration.
Do you use any build flags?
Hmm... I have a bit different results
same issue, fixed on local with following, but error is still coming on production site at Aws.
meteor npm install --save fs-extra
meteor npm install --save file-type
There is something with this package, that has to be update, many people are facing same issue only with this package.
There is something with this package, that has to be update, many people are facing same issue only with this package.
That's true, we're working on the major update.
@dr-dimitru here is my build script:
@echo off
c:
cd \git\ten\website\incentive-sherpa
del \bundles\incentive-sherpa.tar.gz
meteor build \bundles --architecture os.linux.x86_64
So you see, I do add one flag, namely the architecture of the deployment machine.
@dr-dimitru not sure if this is relevant but I should stress that I'm trying this on Meteor 1.5 (bleeding edge).
@ankibalyan @sotarules is the downgrading to 1.7.13 solve this issue?
@dr-dimitru @ankibalyan no, after downgrading to 1.7.13, this is what I got:
C:\git\ten\website\incentive-sherpa>meteor add ostrio:[email protected]
Currently using ostrio:files with version constraint 1.7.15.
The version constraint will be changed to 1.7.13.
ostrio:files: File upload via DDP/HTTP to server FS, AWS, GridFS, DropBox, Google Drive or other 3rd party storage
C:\git\ten\website\incentive-sherpa>sherpa
[[[[[ C:\git\ten\website\incentive-sherpa ]]]]]
=> Started proxy.
W20170601-15:01:38.469(-7)? (STDERR) C:\Users\David\AppData\Local\.meteor\packages\meteor-tool\1.5.0\mt-os.windows.x86_32\dev_bundle\server-lib\node_modules\fibers\future.js:280
W20170601-15:01:38.828(-7)? (STDERR) throw(ex);
W20170601-15:01:38.829(-7)? (STDERR) ^
W20170601-15:01:38.830(-7)? (STDERR)
W20170601-15:01:38.831(-7)? (STDERR) Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
W20170601-15:01:38.832(-7)? (STDERR) at Object.require (C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\boot.js:230:17)
W20170601-15:01:38.833(-7)? (STDERR) at meteorInstall.node_modules.meteor.ostrio:files.files.coffee.js (packages/ostrio_files/files.coffee:8:18)
W20170601-15:01:38.833(-7)? (STDERR) at fileEvaluate (packages\modules-runtime.js:333:9)
W20170601-15:01:38.834(-7)? (STDERR) at require (packages\modules-runtime.js:228:16)
W20170601-15:01:38.835(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\packages\ostrio_files.js:4394:15
W20170601-15:01:38.836(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\packages\ostrio_files.js:4405:3
W20170601-15:01:38.837(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\boot.js:338:34
W20170601-15:01:38.838(-7)? (STDERR) at Array.forEach (native)
W20170601-15:01:38.839(-7)? (STDERR) at Function._.each._.forEach (C:\Users\David\AppData\Local\.meteor\packages\meteor-tool\1.5.0\mt-os.windows.x86_32\dev_bundle\server-lib\node_modules\underscore\underscore.js:79:11)
W20170601-15:01:38.840(-7)? (STDERR) at C:\git\ten\website\incentive-sherpa\.meteor\local\build\programs\server\boot.js:158:5
=> Exited with code: 1
Got it working with meteor npm install --save file-type fs-extra
ostrio:files v1.7.16
Meteor v1.5
no luck, I've deployed with docker, circleCI, and using pm2.
0|main | Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
0|main | at Object.require (/app/bundle/programs/server/boot.js:230:17)
0|main | at meteorInstall.node_modules.meteor.ostrio:files.files.coffee.js (packages/ostrio_files/files.coffee:8:18)
0|main | at fileEvaluate (packages/modules-runtime.js:333:9)
0|main | at require (packages/modules-runtime.js:228:16)
0|main | at /app/bundle/programs/server/packages/ostrio_files.js:4394:15
0|main | at /app/bundle/programs/server/packages/ostrio_files.js:4405:3
0|main | at /app/bundle/programs/server/boot.js:338:34
0|main | at Array.forEach (native)
0|main | at Function._.each._.forEach (/app/bundle/programs/server/node_modules/underscore/underscore.js:79:11)
0|main | at /app/bundle/programs/server/boot.js:158:5
@ankibalyan I'm getting the same symptom when deploying on my own VMWare Ubuntu 16.04.
The bundle installation process works fine, but when I try to start my Meteor cluster, I get the same message you posted above, in each of my .forever log files.
Got it working with meteor npm install --save file-type fs-extra
ostrio:files v1.7.16
Meteor v1.5
@mgscreativa yes it does works only in development mode, from my local machine, but It is getting failed when we are trying to deploy, using meteor build && then cd /app/bundle/programs/server && npm install && npm cache clear.
It just worked for now :dagger: On my server I dig into my docker image and then ran
cd /app/bundle/programs/server && npm install --save file-type fs-extra, then restarted pm2 restart main.
Meteor v1.5 && ostrio:files v1.7.16
@sotarules If you can try something similar It may work for now. but it has to be fixed.
Hello everyone, thanks a lot for investigation and reports, we haven't found a cause for this issue, but hopefully found a solution to finally fix this. Please update to v1.7.17 and let me know how it work for you
@dr-dimitru thanks so much for fixing this so quickly. I can confirm that 1.7.17 fixes both development and production environments. Once 1.7.17 is in play, there is no need to add npm packages file-type nor fs-extra.
Great news @sotarules , thank you for update.
Hope it will work for all of us
@dr-dimitru Yes, It works like a charm. Thanks a lot for that quick release. :hamburger:
@dr-dimitru Thank you so much for fixing it! This package is absolutely awesome btw!
@ankibalyan @pozylon Thank you guys 👨💻
Works for all our production apps as well, thanks @dr-dimitru for the excellent work!
Hi!
Error: Can't find npm module 'file-type'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
Error: Can't find npm module 'fs-extra'. Did you forget to call 'Npm.depends' in package.js within the 'ostrio_files' package?
in dev mode treated successfully by
meteor npm install --save file-type fs-extra
but after deploying error appeared again, and I had to do the same
meteor npm install --save file-type
meteor npm install --save fs-extra
in /opt/bundle on the hosting server,
how to cure it permanently ?
thanks
@valorloff version 1.7.17 has been confirmed to fix the issue. Change directory into your Meteor project folder and do this:
meteor add ostrio:[email protected]
And it should cure it completely, both for development and on your hosting server.
@valorloff feel free to meteor npm remove --save file-type fs-extra if you don't use it in your app directly. And make sure you're on the latest release. In case it won't fix run:
First try:
meteor remove ostrio:files
meteor add ostrio:files
If remove/add doesn't help:
rm -Rf ./node_modules
meteor reset # <- ! Caution: will drop local mongo db
meteor npm install --save
meteor update
@dr-dimitru, as always, it worked!
Thanks!
Thank you everyone. Seems like it's fixed for all of us. Going to close it.
Please, support this project by:
Hi!
after refactoring app to react:
Exception from Tracker recompute function:
meteor.js?hash=6d285d84547b3dad9717a7c89c664b61b45ea3d8:942 TypeError: this._debug is not a function
at module.runModuleSetters.FilesCollectionCore.link (ostrio_files.js?hash=3a35370b63efe4dbb13a6152206c2a5383101832:1358)
at FilesCollection.Images.link (collections.js:44)
at FileCursor.module.runModuleSetters.FileCursor.link (ostrio_files.js?hash=3a35370b63efe4dbb13a6152206c2a5383101832:1445)
at Product.imageFile (product.jsx:29)
at Product.render (product.jsx:45)
at modules.js?hash=38670f4eb4440e3943dd829ee8146bc073e26707:60106
at measureLifeCyclePerf (modules.js?hash=38670f4eb4440e3943dd829ee8146bc073e26707:59386)
at ReactCompositeComponentWrapper._renderValidatedComponentWithoutOwnerOrContext (modules.js?hash=38670f4eb4440e3943dd829ee8146bc073e26707:60105)
at ReactCompositeComponentWrapper._renderValidatedComponent (modules.js?hash=38670f4eb4440e3943dd829ee8146bc073e26707:60132)
at ReactCompositeComponentWrapper.performInitialMount (modules.js?hash=38670f4eb4440e3943dd829ee8146bc073e26707:59672)
npm remove/install --save file-type fs-extra
meteor remove/add ostrio:files
md5-a0f4511dc2fb3187886cd38f58e1b9a8
rm -Rf ./node_modules
meteor reset # <- ! Caution: will drop local mongo db
meteor npm install --save
meteor update
md5-14e481748302d7af3254e1ebf72709b0
Images = new FilesCollection({
collectionName: 'Images',
allowClientCode: false // Disallow remove files from Client
});
const _origLink = Images.link;
Images.link = (v)=> {
return _origLink(v).replace(__meteor_runtime_config__.ROOT_URL, 'xxxxxxxxx/');
};
seems to be
Images.link don't works
Hello @valorloff ,
Looks like potential bug.
Could you move it to separate ticket please?
sorry, just minute
Took a look on your code once again, you are lost the method context, use this to fix:
const _origLink = Images.link;
Images.link = function (v) {
return _origLink.call(Images, v).replace(__meteor_runtime_config__.ROOT_URL, 'xxxxxxxxx/');
};
OR:
const _origLink = Images.link.bind(Images);
Images.link = (v)=> {
return _origLink(v).replace(__meteor_runtime_config__.ROOT_URL, 'xxxxxxxxx/');
};
Most helpful comment
@dr-dimitru thanks so much for fixing this so quickly. I can confirm that 1.7.17 fixes both development and production environments. Once 1.7.17 is in play, there is no need to add npm packages file-type nor fs-extra.