@tanstack/cta-engine 0.37.1 → 0.40.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
|
@@ -182,7 +182,7 @@ Use the following commands to start your app:
|
|
|
182
182
|
% cd ${options.projectName}
|
|
183
183
|
% ${formatCommand(getPackageManagerScriptCommand(options.packageManager, ['dev']))}
|
|
184
184
|
|
|
185
|
-
Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`);
|
|
185
|
+
Please read the README.md file for information on testing, styling, adding routes, etc.${errorStatement}`);
|
|
186
186
|
}
|
|
187
187
|
export async function createApp(environment, options) {
|
|
188
188
|
environment.startRun();
|
package/package.json
CHANGED
package/src/create-app.ts
CHANGED
|
@@ -251,7 +251,7 @@ Use the following commands to start your app:
|
|
|
251
251
|
getPackageManagerScriptCommand(options.packageManager, ['dev']),
|
|
252
252
|
)}
|
|
253
253
|
|
|
254
|
-
Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
|
|
254
|
+
Please read the README.md file for information on testing, styling, adding routes, etc.${errorStatement}`,
|
|
255
255
|
)
|
|
256
256
|
}
|
|
257
257
|
|