create-uix-app 1.4.1-rc3 → 1.4.1

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 +4 -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.1-rc3",
4
+ "version": "1.4.1",
5
5
  "author": {
6
6
  "name": "Roman Liutikov"
7
7
  },
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
  );