create-uix-app 1.4.1-rc3 → 1.4.1
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 +4 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
@@ -129,12 +129,14 @@ if (!projectName && !reFrame && !reactNative && !expo) {
|
|
129
129
|
if (err) {
|
130
130
|
console.error(err);
|
131
131
|
} else {
|
132
|
+
console.log();
|
132
133
|
console.log("Using:");
|
133
134
|
console.log(
|
134
135
|
Object.entries(pkgjson.dependencies)
|
135
136
|
.map(([k, v]) => `${k}@${v}`)
|
136
137
|
.join("\n")
|
137
138
|
);
|
139
|
+
console.log();
|
138
140
|
console.log(
|
139
141
|
"yarn dev # run dev build with Expo and cljs build in watch mode"
|
140
142
|
);
|
@@ -250,12 +252,14 @@ app/`
|
|
250
252
|
if (err) {
|
251
253
|
console.error(err);
|
252
254
|
} else {
|
255
|
+
console.log();
|
253
256
|
console.log("Using:");
|
254
257
|
console.log(
|
255
258
|
Object.entries(pkgjson.devDependencies)
|
256
259
|
.map(([k, v]) => `${k}@${v}`)
|
257
260
|
.join("\n")
|
258
261
|
);
|
262
|
+
console.log();
|
259
263
|
console.log(
|
260
264
|
"yarn dev # run dev build in watch mode with CLJS REPL"
|
261
265
|
);
|