2016-09-09 14 views
0

ローカルで開発しているときにアプリケーションが正常に動作していますが、私はmeteor resetを試しましたが、すべて正常に動作しています。角流星の生産でBowerコンポーネントが動作しない

mupxやherokuでアップロードすると、エラーmodules are not availableなどが表示されます。

enter image description here

これは私のbower.jsonファイルです:

{ 
    "name": "blueSoft", 
    "version": "0.0.0", 
    "license": "MIT", 
    "ignore": [ 
    "**/.*", 
    "node_modules", 
    "bower_components", 
    ".meteor/local/bower", 
    "test", 
    "tests" 
    ], 
    "dependencies": { 
    "angular-credit-cards": "~2.3.5", 
    "angular-chart.js": "~0.8.8", 
    "ng-file-upload": "^12.0.4", 
    "datatables.net": "^1.10.11", 
    "fullcalendar": "^2.6.1", 
    "datatables.net-dt": "^1.10.11", 
    "angular-google-maps": "^2.3.4", 
    "angular-material-data-table": "^0.10.9" 
    }, 
    "overrides": { 
    "angular": { 
     "main": [] 
    } 
    }, 
    "resolutions": { 
    "angular": "^1.4.0" 
    } 
} 

は、ここで私は何を把握することができないように私のlibだ/ app.ng.js

angular.module('blueSoftApp', [ 
    'angular-meteor', 
    'ui.router', 
    'ngMaterial', 
    'md.data.table', 
    'ui.calendar', 
    'ngMessages', 
    'countTo', 
    'chart.js', 
    'angularUtils.directives.dirPagination', 
    'credit-cards', 
    'ngFileUpload', 
    'ngMaterialDatePicker', 
    'uiGmapgoogle-maps' 
]) 

onReady = function() { 
    angular.bootstrap(document, ['blueSoftApp']); 
}; 

if(Meteor.isCordova) { 
    angular.element(document).on('deviceready', onReady); 
} else { 
    angular.element(document).ready(onReady); 
} 

を提出続ける:(

答えて

0

弓矢を実行する英雄イメージで実行されているポストインストールジョブがありますかあなたのために遠隔インストール?

http://xseignard.github.io/2013/02/18/use-bower-with-heroku/

+0

事は、それはそれはしなかった突然、前に働いていたが、私はあなたのソリューションをしようとします –

関連する問題