简体   繁体   English

流星束忽略文件夹和文件

[英]Meteor bundle ignores folder and file

There exists a app/main/document/temp.bin but this file is missing after I run meteor bundle . 存在app / main / document / temp.bin,但是运行meteor bundle后缺少此文件。

When I ran meteor bundle --debug the file got put inside bundle/programs/client/app/main/document/temp.bin 当我运行meteor bundle --debug ,文件被放入bundle/programs/client/app/main/document/temp.bin

so how can I make meteor bundle work? 那么如何使流星束工作呢?

Meteor version is 0.6.5.1 流星版本为0.6.5.1

You need to run 你需要跑步

meteor bundle something.tar.gz

Then in your meteor project's directory you would have the file something.tar.gz containing your project, ready for upload to a sever. 然后,在流星项目的目录中,您将拥有包含您的项目的something.tar.gz文件,可以将其上传到服务器。

Don't forget to install fibers on your server. 不要忘记在服务器上安装光纤。 Once you've untarred: 解压后:

cd bundle/programs/server/node_modules
rm -r fibers
npm install fibers@1.0.1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM