我通过 Github 的包管理器发布了一个包,它似乎可以工作。它出现在repo 的网页和我的个人资料页面上。当我跑
npm install @franklinharvey/time-remaining@1.0.0
在本地它可以工作,但是当我在 Replit 或 CodeSandbox 等新环境中尝试它时,它不会出现。它也没有出现在npmjs.com上
这是一些配置文件
.npmrc
registry=https://npm.pkg.github.com/franklinharvey
.yarnrc
"@franklinharvey:time-remaining" "https://npm.pkg.github.com"
package.json(部分)
"name": "@franklinharvey/time-remaining",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"url": "git@github.com:franklinharvey/time-remaining.git"
}
.npmignore
.gitignore
src/
*.log
*.tsbuildinfo
package-lock.json
yarn.lock
coverage
node_modules