NPMとangular2を初めて使用しています。私自身のNPMパッケージを作成してローカルにインストールしようとしています。npmパッケージが期待どおりにインストールされていません
├── .npmignore
├── README.md
├── LICENSE
├── index.html
├── package.json
├── main.js
├── styles.css
├── tsconfig.json
├── typings.json
├── app
│ └── app.component.ts
│ └── app.module.ts
│ └── main.js
│ └── main.ts
をしかし、私は試してみて、私はnode_modules
フォルダを取得する別のディレクトリにインストールする場合:私は含まれていたパッケージ大丈夫(テスト・パッケージ-0.0.1.tgz)を作成するために管理します。
私はパッケージをインストールするtest-package-0.0.1.tgz
とnpm install C:\otherfolder\platform-core-webui-0.0.1.tgz
を作成するためにnpm pack
を使用しています。
私のpackage.json
ファイルの内容と、Windows環境で動作しているimです。
{
"name": "test-package",
"version": "0.0.1",
"description": "Test package",
"author": "me",
"publishConfig": {
"registry": "http://localnpmrepository/npm"
},
"scripts": {
"start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
"lite": "lite-server",
"postinstall": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
},
"license": "UNLICENSED",
"dependencies": {
"@angular/common": "~2.0.2",
"@angular/compiler": "~2.0.2",
"@angular/core": "~2.0.2",
"@angular/forms": "~2.0.2",
"@angular/http": "~2.0.2",
"@angular/platform-browser": "~2.0.2",
"@angular/platform-browser-dynamic": "~2.0.2",
"@angular/router": "~3.0.2",
"@angular/upgrade": "~2.0.2",
"angular-in-memory-web-api": "~0.1.5",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.39",
"zone.js": "^0.6.25"
},
"devDependencies": {
"concurrently": "^3.0.0",
"lite-server": "^2.2.2",
"typescript": "^2.0.3",
"typings": "^1.4.0"
},
"main": "main.js"
}
私はインストールしないだけでnode_modules
フォルダの後にまったく同じフォルダ構造を見て期待していました。どこで間違ったんですか?