使用ng-packagr时出错:找不到模块:错误:无法解决

时间:2019-02-14 06:42:09

标签: angular ng-packagr

我无法导入在主项目中打包和引用的子模块之一中定义的组件。一切似乎都很好,但我仍然看到错误-

  ./src/app/app.module.ts中的

ERROR找不到模块:错误:不能   解析'@ first-project / second-project / app / regist   配给/注册组件”中   'C:\ Users \ anujin \ Documents \ workspace-vs-code \ FirstProject \ src \ app'   ./src/app/app-routing.module.ts中的错误找不到模块:错误:   无法解析'@ first-project / second-project / app / regist   配给/注册组件”中   'C:\ Users \ anujin \ Documents \ workspace-vs-code \ FirstProject \ src \ app'

我创建了两个项目-

  • FirstProject
  • SecondProject

我在RegistrationComponent中创建了一个SecondProject,需要在FirstProject中使用。

FirstProject文件:

package.json

{
  "name": "@first-project/second-project",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e",
    "packagr": "ng-packagr -p ng-package.json"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "~7.2.0",
    "@angular/common": "~7.2.0",
    "@angular/compiler": "~7.2.0",
    "@angular/core": "~7.2.0",
    "@angular/forms": "~7.2.0",
    "@angular/platform-browser": "~7.2.0",
    "@angular/platform-browser-dynamic": "~7.2.0",
    "@angular/router": "~7.2.0",
    "core-js": "^2.5.4",
    "ng-packagr": "^4.7.0",
    "rxjs": "~6.3.3",
    "tsickle": "^0.34.3",
    "tslib": "^1.9.0",
    "zone.js": "~0.8.26"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.13.0",
    "@angular/cli": "~7.3.1",
    "@angular/compiler-cli": "~7.2.0",
    "@angular/language-service": "~7.2.0",
    "@types/node": "~8.9.4",
    "@types/jasmine": "~2.8.8",
    "@types/jasminewd2": "~2.0.3",
    "codelyzer": "~4.5.0",
    "jasmine-core": "~2.99.1",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~3.1.1",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.1",
    "karma-jasmine": "~1.1.2",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.4.0",
    "ts-node": "~7.0.0",
    "tslint": "~5.11.0",
    "typescript": "~3.2.2"
  }
}

ng-package.json-

{
    "$schema": "./node_modules/ng-packagr/package.schema.json",
    "lib": {
        "entryFile": "./src/public_api.ts"
    },
    "whitelistedNonPeerDependencies": [
        "@angular/animations",
        "@angular/cdk",
        "@angular/common",
        "@angular/compiler",
        "@angular/forms",
        "@angular/core",
        "@angular/http",
        "@angular/material",
        "@angular/platform-browser",
        "@angular/platform-browser-dynamic",
        "@angular/router",
        "core-js",
        "rxjs",
        "tsickle",
        "zone.js",
        "ng-packagr"
      ]
}

public_api.ts

export * from './app/app.module';
export * from './app/registration/registration.component';

我在FirstProject-

中运行了以下命令
  • npm run packagr
  • cd dist
  • npm包

然后我在SecondProject中引用了打包的FirstProject

FirstProject文件-

package.json

{
  "name": "first-project",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "~7.2.0",
    "@angular/cdk": "~7.3.1",
    "@angular/common": "~7.2.0",
    "@angular/compiler": "~7.2.0",
    "@angular/core": "~7.2.0",
    "@angular/forms": "~7.2.0",
    "@angular/material": "^7.3.1",
    "@angular/platform-browser": "~7.2.0",
    "@angular/platform-browser-dynamic": "~7.2.0",
    "@angular/router": "~7.2.0",
    "core-js": "^2.5.4",
    "hammerjs": "^2.0.8",
    "rxjs": "~6.3.3",
    "tslib": "^1.9.0",
    "zone.js": "~0.8.26",
    "@first-project/second-project": "<path>/SecondProject/dist/first-project-second-project-0.0.0.tgz"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.13.0",
    "@angular/cli": "~7.3.1",
    "@angular/compiler-cli": "~7.2.0",
    "@angular/language-service": "~7.2.0",
    "@types/node": "~8.9.4",
    "@types/jasmine": "~2.8.8",
    "@types/jasminewd2": "~2.0.3",
    "codelyzer": "~4.5.0",
    "jasmine-core": "~2.99.1",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~3.1.1",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.1",
    "karma-jasmine": "~1.1.2",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.4.0",
    "ts-node": "~7.0.0",
    "tslint": "~5.11.0",
    "typescript": "~3.2.2"
  }
}

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { RegistrationComponent } from '@first-project/second-project/app/registration/registration.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';


@NgModule({
  declarations: [
    AppComponent,
    RegistrationComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    BrowserAnimationsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

app.routing.ts

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { RegistrationComponent } from '@first-project/second-project/app/registration/registration.component';

const routes: Routes = [
  {path: 'registration', component: RegistrationComponent}
];

@NgModule({
  imports: [RouterModule.forRoot(routes)],
  exports: [RouterModule]
})
export class AppRoutingModule { }

我在npm install中进行了FirstProject,并且在节点模块下看到了正确创建的引用,但是在npm start中却在此处进行了FirstProject,它给出了以下错误-< / p>

  ./src/app/app.module.ts中的

ERROR       找不到模块:错误:无法解析'@ first-project / second-project / app / regist       ration / registration.component”位于“ C:\ Users \ anujin \ Documents \ workspace-vs-code \       FirstProject \ src \ app'       ./src/app/app-routing.module.ts中的错误       找不到模块:错误:无法解析'@ first-project / second-project / app / regist       ration / registration.component”位于“ C:\ Users \ anujin \ Documents \ workspace-vs-code \       FirstProject \ src \ app'

我不明白我在这里想念什么。

3 个答案:

答案 0 :(得分:1)

您可以使用共享文件夹,在共享模块中创建RegistrationComponent,并在两个项目中都使用它。请参考以下链接,它将解决您的问题。

Share code(component) between multiple projects

Code-Sharing-with-multiple-app-angular-project-using-base-components

答案 1 :(得分:0)

请将您的组件导出到public.ts文件

public_api.ts
export * from './app/RegistrationComponent.component';
export * from './app/app.module';
  

对于组件:   使用export使该元素可见。将其添加到   入口文件使该类可见。

阅读:The Angular Library Series - Creating a Library with Angular CLI

答案 2 :(得分:0)

实际上,在dist文件夹中生成的package.json缺少“ main”字段,该字段公开了库的默认.js文件。 要对此进行检查,您只需手动添加即可。在使用该库的应用程序的node_modules中,打开库包,然后在package.json中添加类似以下内容: "main": "./esm2015/my-library-name-here.js"。当然,这取决于您的库的名称。 我没有找到使用ng-packagr配置自动定义的明确方法,所以我正在做一个自制脚本!

相关问题