create-uix-app 1.4.0-rc4 → 1.4.0-rc6

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 +9 -0
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-rc4",
4
+ "version": "1.4.0-rc6",
5
5
  "author": {
6
6
  "name": "Roman Liutikov"
7
7
  },
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"