@tanstack/cta-engine 0.16.4 → 0.16.6

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.
@@ -165,13 +165,14 @@ Errors were encountered during the creation of your app:
165
165
 
166
166
  ${environment.getErrors().join('\n')}`;
167
167
  }
168
+ // Use the force luke! :)
168
169
  environment.outro(`Your ${environment.appName} app is ready in '${basename(options.targetDir)}'.
169
170
 
170
171
  Use the following commands to start your app:
171
172
  % cd ${options.projectName}
172
173
  % ${formatCommand(getPackageManagerScriptCommand(options.packageManager, ['dev']))}
173
174
 
174
- Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`);
175
+ Please check the README.md for information on testing, styling, adding routes, etc.${errorStatement}`);
175
176
  }
176
177
  export async function createApp(environment, options) {
177
178
  environment.startRun();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cta-engine",
3
- "version": "0.16.4",
3
+ "version": "0.16.6",
4
4
  "description": "Tanstack Application Builder Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/create-app.ts CHANGED
@@ -224,6 +224,7 @@ Errors were encountered during the creation of your app:
224
224
  ${environment.getErrors().join('\n')}`
225
225
  }
226
226
 
227
+ // Use the force luke! :)
227
228
  environment.outro(
228
229
  `Your ${environment.appName} app is ready in '${basename(options.targetDir)}'.
229
230
 
@@ -233,7 +234,7 @@ Use the following commands to start your app:
233
234
  getPackageManagerScriptCommand(options.packageManager, ['dev']),
234
235
  )}
235
236
 
236
- Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
237
+ Please check the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
237
238
  )
238
239
  }
239
240