create-uix-app 1.4.0-rc4 → 1.4.0-rc6
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/package.json +1 -1
- package/src/index.js +9 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
@@ -110,12 +110,14 @@ if (!projectName && !reFrame && !reactNative && !expo) {
|
|
110
110
|
if (err) {
|
111
111
|
console.error(err);
|
112
112
|
} else {
|
113
|
+
console.log("\n");
|
113
114
|
console.log("Using:");
|
114
115
|
console.log(
|
115
116
|
Object.entries(pkgjson.dependencies)
|
116
117
|
.map(([k, v]) => `${k}@${v}`)
|
117
118
|
.join("\n")
|
118
119
|
);
|
120
|
+
console.log("\n");
|
119
121
|
console.log(
|
120
122
|
"yarn dev # run dev build with Expo and cljs build in watch mode"
|
121
123
|
);
|
@@ -231,6 +233,13 @@ app/`
|
|
231
233
|
if (err) {
|
232
234
|
console.error(err);
|
233
235
|
} else {
|
236
|
+
console.log("\n");
|
237
|
+
console.log("Using:");
|
238
|
+
console.log(
|
239
|
+
Object.entries(pkgjson.devDependencies)
|
240
|
+
.map(([k, v]) => `${k}@${v}`)
|
241
|
+
.join("\n")
|
242
|
+
);
|
234
243
|
console.log("\n");
|
235
244
|
console.log(
|
236
245
|
"yarn dev # run dev build in watch mode with CLJS REPL"
|