generator-reshow 0.19.2 → 0.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2137,7 +2137,7 @@ var promptSubGenerator = async (oGen, {
|
|
|
2137
2137
|
// src/generator/index.ts
|
|
2138
2138
|
class generator_default extends YoGenerator_default {
|
|
2139
2139
|
async prompting() {
|
|
2140
|
-
this.env.options.nodePackageManager = "
|
|
2140
|
+
this.env.options.nodePackageManager = "bun";
|
|
2141
2141
|
const {
|
|
2142
2142
|
handleAnswers: handleAnswers2,
|
|
2143
2143
|
mergePromptOrOption,
|
|
@@ -2241,7 +2241,7 @@ class gitlab_docker_default extends YoGenerator_default {
|
|
|
2241
2241
|
});
|
|
2242
2242
|
}
|
|
2243
2243
|
writing() {
|
|
2244
|
-
this.env.options.nodePackageManager = "
|
|
2244
|
+
this.env.options.nodePackageManager = "bun";
|
|
2245
2245
|
this.options.skipInstall = true;
|
|
2246
2246
|
const { cp, chMainName } = YoHelper_default(this);
|
|
2247
2247
|
chMainName(this.mainName);
|
package/generators/npm/index.js
CHANGED
|
@@ -2335,7 +2335,7 @@ class npm_default extends YoGenerator_default {
|
|
|
2335
2335
|
});
|
|
2336
2336
|
}
|
|
2337
2337
|
writing() {
|
|
2338
|
-
this.env.options.nodePackageManager = "
|
|
2338
|
+
this.env.options.nodePackageManager = "bun";
|
|
2339
2339
|
const { cp, chMainName } = YoHelper_default(this);
|
|
2340
2340
|
const { isUseBabel, isUseBabelUI, babelRootMode } = this.payload || {};
|
|
2341
2341
|
chMainName(this.mainName);
|
package/package.json
CHANGED