使用cnpm install 的时候提示Can't find package。
在cnpm package里能搜索到scratch-audio的包,但版本是0.1.0-prerelease.20190108181031
但是在npm package里搜索到scratch-audio的包版本是0.1.0-prerelease.20190114210212
原因是cnpm没有从npm官网同步到最新的scratch-audio包。
解决方法:
把package.json中devDependencies里改为"scratch-audio": "0.1.0-prerelease.20190108181031" (缺点:不能使用到最新版本的包)
或者使用npm install (缺点:安装很慢)
或者在 https://npm.taobao.org/package/里面找到scratch-audio这个包,点sync同步