2016-09-27 4 views
2

デフォルト拡張子のsystemjs設定を自動的に処理するAngular2のnpm repoを設定することはできますか?systemjsのdefaultExtensionでAngular2ライブラリを設定

ng2-ormをビルドしていて、npmがインストールされているときにこれが自動になる可能性があるのであれば興味がありました。

私のpackage.jsonにはすでに「メイン」定義がありますが、デフォルトの拡張子はありません。これを自動化する方法はありますか?私のパッケージが使用されると、実装者はsystemjs.config.js行を作成する必要はありませんか?

私のsystemjs.config.jsファイルは、ng2-orm行を参照してください。手動で追加する必要がありました。

/** 
* System configuration for Angular samples 
* Adjust as necessary for your application needs. 
*/ 
(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', 
     'angular-in-memory-web-api': 'npm:angular-in-memory-web-api', 
     'ng2-orm': 'npm:ng2-orm' 
    }, 
    // packages tells the System loader how to load when no filename and/or no extension 
    packages: { 
     app: { 
     main: './main.js', 
     defaultExtension: 'js' 
     }, 
     rxjs: { 
     defaultExtension: 'js' 
     }, 
     'angular-in-memory-web-api': { 
     main: './index.js', 
     defaultExtension: 'js' 
     }, 
     'ng2-orm': { 
     main: './dist/js/index.js', 
     defaultExtension: 'js' 
     } 
    } 
    }); 
})(this); 

答えて

0

あなたがsystemjs.config.jsを自動化したい場合は、必要なツールは、NPMモジュールJSPMです。特定のモジュールをインストールするように指示すると、それらのモジュールがインストールされ、package.jsonとsystemjs.config.jsが更新されます。少なくとも、それは夢です!

+0

ありがとうございます!やってみます – Asperon

関連する問題