私はオートhttps://github.com/aldeed/meteor-autoform-bs-datetimepickerこのDatePickerのパッケージで問題を持っていたし、修正プログラムが別のレポhttps://github.com/stefanve/meteor-autoform-bs-datetimepickerにあったとした2つの先のコミットhttps://github.com/aldeed/meteor-autoform-bs-datetimepicker/compare/master...stefanve:masterインストール流星パッケージ、ローカルまたはgithubの
私は空だった私のパッケージフォルダに行き、私は修正を含むレポをクローンしますhttps://github.com/stefanve/meteor-autoform-bs-datetimepicker.git
私はこの記事の指示に従っていましたHow to modify already installed Atmosphere packagesパッケージをローカルにインストールする方法について説明しました。
パッケージdirにパッケージをインストールしようとしましたが、パッケージが不明であるというエラーが表示されました。
私はこの
Package.describe({
name: 'stefanve:autoform-bs-datetimepicker',
summary: 'Custom bootstrap-datetimepicker input type with timezone support for AutoForm',
version: '1.0.6',
git: 'https://github.com/stefanve/meteor-autoform-bs-datetimepicker.git'
});
Package.onUse(function(api) {
api.use('[email protected]');
api.use('[email protected]');
api.use('aldeed:[email protected] || 5.0.0');
// Ensure momentjs packages load before this one if used
api.use('momentjs:[email protected]', 'client', {weak: true});
api.use('mrt:[email protected]', 'client', {weak: true});
api.addFiles([
'autoform-bs-datetimepicker.html',
'autoform-bs-datetimepicker.js'
], 'client');
});
にパッケージファイルを編集しようとした私のパッケージがインストールされました。
Mは、私がクローンしたファイルからpackaeをインストールしたか、githubから取得したのですか?
良いアイデア。私はバージョンを変更して見ます。 –