create-uix-app 1.4.0-rc3 → 1.4.0-rc4

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 +5 -9
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-rc4",
5
5
  "author": {
6
6
  "name": "Roman Liutikov"
7
7
  },
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
- Object.entries(pkgjson.dependencies)
117
- .map(([k, v]) => `${k}@${v}`)
118
- .join("\n");
119
- console.log("\n");
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"