如何将 AWS Codecommit 存储库用作 npm 依赖项

How to use AWS Codecommit repo as npm dependency

这是我的构建规范文件:

version: 0.2
env:
  git-credential-helper: yes
phases:
  install:
    runtime-versions:
      nodejs: 10
    commands:
      - npm install
  build:
    commands:
      - npm run build
  post_build:
    commands:
      - echo Build completed on `date`

并在 package.json 中我添加了:-

dependencies : {
"sharedLib":"git+https://git-codecommit.us-east-1.amazonaws.com/v1/repos/sharedLib#branchname"
} 

我在 npm 安装中遇到构建错误。任何帮助都会得到帮助。

通过 IAM 服务,代码提交可以访问分配给代码构建的角色。

那么代码构建应该运行。