create-bodhi-js 0.12.0 → 0.13.0
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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -250,7 +250,7 @@ async function create(projectName, options) {
|
|
|
250
250
|
process.exit(1);
|
|
251
251
|
}
|
|
252
252
|
let enableGithubPages = options.githubPages ?? false;
|
|
253
|
-
if (options.githubPages === void 0) {
|
|
253
|
+
if (options.githubPages === void 0 && !options.ci) {
|
|
254
254
|
const result = await p.confirm({
|
|
255
255
|
message: "Enable GitHub Pages deployment?",
|
|
256
256
|
initialValue: false
|