Angular 9 - The target entry-point has missing dependencies

后端 未结 6 1545
南笙
南笙 2021-02-06 23:09

I have upgraded an Angular library to Angular 9. However when I attempt to use that library in another Angular 9 project I get an error like this:

The target entry-poi

6条回答
  •  名媛妹妹
    2021-02-06 23:28

    The First Problem

    You're getting that error because your test project does not have those dependencies installed in its node_modules/ directory. But I believe that doing as @Renato suggests and forcing the users of your library to manually install those dependencies is the wrong approach.

    In order to have the missing dependencies automatically installed, it's necessary to add your library's 3rd party dependencies in two places (within the library itself):

    • package.json at the root of the library. I believe you already have this done. Putting all packages here ensures that there is only a single node_modules/ directory at the root when you run your project for development.
    • projects/entity-selector/package.json is the file that is used as the basis for the package.json file that Angular generates when you build your library. It is necessary to add the dependencies here so that the consumers of your library know which packages they (well, their package manager) need to download. I believe that this is what you're currently missing.

    The Second Problem

    After properly adding my dependencies to both places, I got build errors telling me that I should use "peerDependencies" and not "dependencies" for my library.

    That is not applicable to my use case, so to get around it I had to explicitly whitelist my dependencies. Doing so looks a little different depending on which of the following you're using:

    • projects/entity-selector/package.json
    • projects/entity-selector/ng-package.json.


    In projects/entity-selector/package.json it should be:

    {
      "$schema": "../../../node_modules/ng-packagr/package.schema.json",
      "ngPackage": {
        "lib": {
          "entryFile": "public_api.ts"
        },
        "dest": "../../../dist/mycomponents/entity-selector",
        "whitelistedNonPeerDependencies": [
          "mycomponents/shared-services",
          "mycomponents/spinner",
          "mycomponents/text-input"
        ]
      }
    }
    

    In projects/entity-selector/ng-package.json it should be:

    {
      "$schema": "./node_modules/ng-packagr/package.schema.json",
      "lib": {
        "entryFile": "public_api.ts"
      },
      "whitelistedNonPeerDependencies": [
        "mycomponents/shared-services",
        "mycomponents/spinner",
        "mycomponents/text-input"
      ]
    }
    

    Finally, don't forget to build your project with ng build --prod or you'll get an error about the new Ivy compiler when you try to publish to NPM!

提交回复
热议问题