create-uix-app 1.4.0-rc3 → 1.4.0-rc4
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 +5 -9
package/package.json
CHANGED
package/src/index.js
CHANGED
@@ -110,13 +110,12 @@ if (!projectName && !reFrame && !reactNative && !expo) {
|
|
110
110
|
if (err) {
|
111
111
|
console.error(err);
|
112
112
|
} else {
|
113
|
-
console.log("Done.");
|
114
|
-
console.log("\n");
|
115
113
|
console.log("Using:");
|
116
|
-
|
117
|
-
.
|
118
|
-
|
119
|
-
|
114
|
+
console.log(
|
115
|
+
Object.entries(pkgjson.dependencies)
|
116
|
+
.map(([k, v]) => `${k}@${v}`)
|
117
|
+
.join("\n")
|
118
|
+
);
|
120
119
|
console.log(
|
121
120
|
"yarn dev # run dev build with Expo and cljs build in watch mode"
|
122
121
|
);
|
@@ -199,8 +198,6 @@ if (!projectName && !reFrame && !reactNative && !expo) {
|
|
199
198
|
app/`
|
200
199
|
);
|
201
200
|
}
|
202
|
-
|
203
|
-
console.log("Done.");
|
204
201
|
console.log("yarn cljs:dev # run dev build in watch mode");
|
205
202
|
console.log("yarn cljs:release # build production bundle");
|
206
203
|
} else {
|
@@ -234,7 +231,6 @@ app/`
|
|
234
231
|
if (err) {
|
235
232
|
console.error(err);
|
236
233
|
} else {
|
237
|
-
console.log("Done.");
|
238
234
|
console.log("\n");
|
239
235
|
console.log(
|
240
236
|
"yarn dev # run dev build in watch mode with CLJS REPL"
|