我有一个新安装的Windows,我正在尝试首次运行ng-packagr。
我遇到了错误:
Error: Cannot find module '@angular/compiler-cli/src/perform_compile'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (C:\Users\MyUser\AppData\Roaming\npm\node_modules\ng-packagr\lib\ts\tsconfig.js:3:12)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
我确实通过运行来安装了角度CLI
npm install -g @angular/cli@latest
它正在运行v6.0.8
我的ng-package.json:
{
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"lib": {
"entryFile": "index.ts",
"externals": {
"moment": "moment"
}
}
}
我在这里想念什么?
答案 0 :(得分:0)
嘿,最近解决了类似的问题,您可以尝试以下操作:
npm uninstall -g angular-cli
npm cache clean or npm cache verify (if npm > 5)
npm install -g @angular/cli@latest
ng new projectname
npm i ng-packagr
"scripts": {
"packagr": "ng-packagr -p ng-package.json"
}
{
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"lib": {
"entryFile": "public_api.ts"
}
}
export * from './src/app/modules/yourmodulename/yourmodulename.module
就是这样,现在您可以运行npm run packagr
,它应该可以工作并生成dist文件夹。
您可以使用npm publish dist
这就是我解决的方法,希望对您有所帮助。
谢谢