mirror of
https://github.com/RubyMetric/chsrc
synced 2025-06-08 11:14:03 +08:00
Show different location based on -local
for Bun
This commit is contained in:
parent
60e611edd4
commit
0c10b1b1d1
@ -20,6 +20,7 @@ pl_nodejs_bun_getsrc (char *option)
|
|||||||
/**
|
/**
|
||||||
* @consult https://bun.sh/docs/runtime/bunfig#global-vs-local
|
* @consult https://bun.sh/docs/runtime/bunfig#global-vs-local
|
||||||
* @consult https://github.com/RubyMetric/chsrc/issues/83
|
* @consult https://github.com/RubyMetric/chsrc/issues/83
|
||||||
|
* @consult https://github.com/RubyMetric/chsrc/pull/90
|
||||||
*
|
*
|
||||||
* chsrc set bun
|
* chsrc set bun
|
||||||
*/
|
*/
|
||||||
@ -27,14 +28,23 @@ void
|
|||||||
pl_nodejs_bun_setsrc (char *option)
|
pl_nodejs_bun_setsrc (char *option)
|
||||||
{
|
{
|
||||||
char *setsrc_type = xy_streql (option, SetsrcType_Reset) ? SetsrcType_Reset : SetsrcType_Manual;
|
char *setsrc_type = xy_streql (option, SetsrcType_Reset) ? SetsrcType_Reset : SetsrcType_Manual;
|
||||||
|
|
||||||
|
// 用的是 npm Registry 的源
|
||||||
chsrc_yield_source (pl_nodejs);
|
chsrc_yield_source (pl_nodejs);
|
||||||
|
|
||||||
char *file = xy_strjoin(3, "[install]\n"
|
char *file = xy_strjoin(3, "[install]\n"
|
||||||
"registry = \"", source.url, "\"");
|
"registry = \"", source.url, "\"");
|
||||||
|
|
||||||
chsrc_note2 (xy_strjoin (3, "(全局配置)请您手动写入以下内容到 ", xy_uniform_path ("~/.bunfig.toml"), " 文件中(如果只是配置项目级,则写入到项目根目录的 bunfig.toml 文件中。):"));
|
if (CliOpt_Locally==true)
|
||||||
puts (file);
|
{
|
||||||
|
chsrc_note2 ("请您手动写入以下内容到本项目根目录的 bunfig.toml 文件中");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
chsrc_note2 (xy_strjoin (3, "请您手动写入以下内容到 ", xy_uniform_path ("~/.bunfig.toml"), " 文件中"));
|
||||||
|
}
|
||||||
|
|
||||||
|
puts (file);
|
||||||
chsrc_conclude (&source, setsrc_type);
|
chsrc_conclude (&source, setsrc_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user