livefyre npm モジュールを meteor にインストールするためのパッケージを作成しようとしています (クライアントから試して使用するように要求されました)。
I've followed the information here but am getting errors saying Errors while scanning packages: File not found: livefyre.js
when I run meteor add livefyre
I've made a packages/livefyre directory under my project root and it it have package.js
Package.describe({
summary: "livefyre package"
});
Npm.depends({
'livefyre':'1.1.4'
});
Package.on_use(function (api) {
api.add_files('livefyre.js', 'client');
});
and another file called livefyre_settings.js with
liveFyre = Npm.require("livefyre");
and that's it so far.
The npm package seems to be installed, I can see it under /home/pnunn/.npm/livefyre/1.1.4/package/lib/livefyre.js
What am I missing?