本文介绍了安装我的NPM软件包后,将文件移至根目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前有我的仓库 https://github.com/Aotik/Blossom 目前正在努力.这是NPM发布的名为blossom-ui
I currently have my repo https://github.com/Aotik/Blossom which I'm working on at the moment. It is a NPM published package named blossom-ui
我的问题是,安装软件包后,是否可以将文件从node_modules/blossom-ui
中移出到node_modules
以外的文件夹的根目录中?
My question is, is there a way to move the files out of node_modules/blossom-ui
into the root of the folder outside node_modules
when the package is installed?
所以看起来像
blossom-ui
-
css
/
styl
/
fonts
/
js
/
node_modules
-
...
推荐答案
这可以在npm中的postinstall
脚本中完成.
This can be done in a postinstall
script in npm.
postinstall
.
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "cp node_modules/blossom-ui ."
},
更多信息: npm网站脚本页面.
这篇关于安装我的NPM软件包后,将文件移至根目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!