2017-07-20 3 views
0

systemjs.config.jsでlodashをインポートする正しい方法は何ですか? 私のAOTはlodashのために失敗しています。 "4.17.4" と "@タイプ/ lodash": "4.14.68"angle4 aotでlodashを動作させる方法

私のプロジェクトは、私がpackage.jsonに "lodash" を使用しています https://github.com/filipesilva/angular-quickstart-lib

に基づいて、コンポーネントのライブラリです

import * as _ from 'lodash';

を次のように私はlodashをインポートしています私のsystemjs.config.js

``` 
(function (global) { 
    System.config({ 
    paths: { 
     // paths serve as alias 
     'npm:': 'node_modules/' 
    }, 
    // map tells the System loader where to look for things 
    map: { 
     // our app is within the app folder 
     app: 'app', 

     // angular bundles 
     '@angular/core': 'npm:@angular/core/bundles/core.umd.js', 
     '@angular/common': 'npm:@angular/common/bundles/common.umd.js', 
     '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js', 
     '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js', 
     '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js', 
     '@angular/http': 'npm:@angular/http/bundles/http.umd.js', 
     '@angular/router': 'npm:@angular/router/bundles/router.umd.js', 
     '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js', 

     // other libraries 
     'rxjs':      'npm:rxjs', 
     'primeng': 'npm:primeng', 

     'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js', 
     'angular-quickstart-lib': 'npm:angular-quickstart-lib/bundles/angular-quickstart-lib.umd.js', 
     'lodash': 'npm:lodash/lodash.js' 
    }, 
    // packages tells the System loader how to load when no filename and/or no extension 
    packages: { 
     app: { 
     defaultExtension: 'js', 
      meta: { 
       './*.js': { 
        loader: 'systemjs-angular-loader.js' 
       } 
      } 
     }, 
     rxjs: { 
     defaultExtension: 'js' 
     }, 
     'primeng': {defaultExtension: 'js'}, 
     'angular-quickstart-lib': { 
      main: 'index.js', 
      defaultExtension: 'js', 
      meta: { 
       './*.js': { 
        loader: 'systemjs-angular-loader.js' 
       } 
      } 
     }, 
     'lodash':{ 
      main: 'index.js', 
      defaultExtension: 'js' 
     } 
    } 
    }); 
})(this); 

``` 

です

しかし、AOTの間に次のエラーが発生しています。 (node:5810) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: 'cloneDeep' is not exported by node_modules/lodash/lodash.js (node:5810) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

助けてください。

答えて

0

あなたはこれに代えて、lodashためのコンフィギュレーション・マッピングが間違っていましたかなり確信:

'lodash': 'npm:lodash/lodash.js' は行うべきであったの: 'lodash': 'npm:lodash/index.js'

これが何であるかをindex.js

module.exports = require('./lodash');

内部
関連する問題