create-uix-app 1.4.0-rc3 → 1.4.0-rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +12 -7
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-uix-app",
3
3
  "description": "Creates a starter project for UIx web app",
4
- "version": "1.4.0-rc3",
4
+ "version": "1.4.0-rc5",
5
5
  "author": {
6
6
  "name": "Roman Liutikov"
7
7
  },
package/src/index.js CHANGED
@@ -110,12 +110,13 @@ if (!projectName && !reFrame && !reactNative && !expo) {
110
110
  if (err) {
111
111
  console.error(err);
112
112
  } else {
113
- console.log("Done.");
114
113
  console.log("\n");
115
114
  console.log("Using:");
116
- Object.entries(pkgjson.dependencies)
117
- .map(([k, v]) => `${k}@${v}`)
118
- .join("\n");
115
+ console.log(
116
+ Object.entries(pkgjson.dependencies)
117
+ .map(([k, v]) => `${k}@${v}`)
118
+ .join("\n")
119
+ );
119
120
  console.log("\n");
120
121
  console.log(
121
122
  "yarn dev # run dev build with Expo and cljs build in watch mode"
@@ -199,8 +200,6 @@ if (!projectName && !reFrame && !reactNative && !expo) {
199
200
  app/`
200
201
  );
201
202
  }
202
-
203
- console.log("Done.");
204
203
  console.log("yarn cljs:dev # run dev build in watch mode");
205
204
  console.log("yarn cljs:release # build production bundle");
206
205
  } else {
@@ -234,7 +233,13 @@ app/`
234
233
  if (err) {
235
234
  console.error(err);
236
235
  } else {
237
- console.log("Done.");
236
+ console.log("\n");
237
+ console.log("Using:");
238
+ console.log(
239
+ Object.entries(pkgjson.dependencies)
240
+ .map(([k, v]) => `${k}@${v}`)
241
+ .join("\n")
242
+ );
238
243
  console.log("\n");
239
244
  console.log(
240
245
  "yarn dev # run dev build in watch mode with CLJS REPL"