@tanstack/cta-engine 0.43.1 → 0.44.0
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.
- package/dist/create-app.js +1 -1
- package/package.json +1 -1
- package/src/create-app.ts +1 -1
package/dist/create-app.js
CHANGED
|
@@ -190,7 +190,7 @@ ${environment.getErrors().join('\n')}`;
|
|
|
190
190
|
Use the following commands to start your app:
|
|
191
191
|
${cdInstruction}% ${formatCommand(getPackageManagerScriptCommand(options.packageManager, ['dev']))}
|
|
192
192
|
|
|
193
|
-
Please
|
|
193
|
+
Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`);
|
|
194
194
|
}
|
|
195
195
|
export async function createApp(environment, options) {
|
|
196
196
|
environment.startRun();
|
package/package.json
CHANGED
package/src/create-app.ts
CHANGED
|
@@ -261,7 +261,7 @@ ${cdInstruction}% ${formatCommand(
|
|
|
261
261
|
getPackageManagerScriptCommand(options.packageManager, ['dev']),
|
|
262
262
|
)}
|
|
263
263
|
|
|
264
|
-
Please
|
|
264
|
+
Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
|
|
265
265
|
)
|
|
266
266
|
}
|
|
267
267
|
|