Getting Meteor to NOT load a directory or file

I am trying to make a folder/file which meteor will not load automatically or i could get meteor to ignore it. This is a standard regular node file / project which i would like to bootstrap with meteor.

assets in “public” folder are served by server when needed, but not bundled to client.

Yeah don’t want the world to see the code i write in my file / project.

I actually had an idea of doing something like this at the top of my project file but i would have to do it for each file, which seems like a really bad idea. Wanted to know if the community had a better way around?

if (Meteor) return;

well, anything starting with ‘.’, folders too are ignored

2 Likes

Oh Nice, totally forgot that. Thanks.