摘要: https://www.cnblogs.com/xulei1992/p/15176992.html https://segmentfault.com/a/1190000038956767 tsdx.config.js const postcss = require('rollup-plugin-po 阅读全文
posted @ 2021-08-23 17:49 Redchar 阅读(2014) 评论(0) 推荐(0) 编辑
摘要: // tsdx.config.js const images = require('@rollup/plugin-image'); module.exports = { rollup(config, options) { config.plugins = [ images({ include: [' 阅读全文
posted @ 2021-08-23 17:48 Redchar 阅读(469) 评论(0) 推荐(0) 编辑
摘要: npm link是一种把包链接到包文件夹的方式,即:可以在不发布npm模块的情况下,调试该模块,并且修改模块后会实时生效,不需要通过npm install进行安装 模块和项目在同一目录下 $ npm link ../module 模块和项目不在同一目录下 $ # 先去到模块目录,把它 link 到全 阅读全文
posted @ 2021-08-23 16:36 Redchar 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 检查package.json或者npm link时是否正确,更改后删掉node_modules重新安装 阅读全文
posted @ 2021-08-23 16:35 Redchar 阅读(507) 评论(0) 推荐(0) 编辑