npm的sharp模块装不上
- 当前 Bug 的表现(可附上截图) 在云函数中使用sharp包,已添加到云函数的package.json的依赖里,云端安装后无法使用,报错: [图片] 这时候使用“沉浸式”的“更多设置”看云上的函数目录,是有sharp包的目录,但似乎是没有build的状态。 如果在本地安装,把node_modules上传,会在上传进度为50%~90%时随机报错,如图: [图片][图片] - 预期表现 能在云函数中使用sharp模块 - 复现路径 无 - 提供一个最简复现 Demo // index.js const cloud = require('wx-server-sdk'); const sharp = require('sharp'); // package.json { "name": "imageProcess", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "dependencies": { "sharp": "^0.21.3", "wx-server-sdk": "latest" } }