@tanstack/cta-engine 0.34.1 → 0.34.4

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.
@@ -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 check the README.md for information on testing, styling, adding routes, etc.${errorStatement}`);
185
+ Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`);
186
186
  }
187
187
  export async function createApp(environment, options) {
188
188
  environment.startRun();
@@ -1197,6 +1197,7 @@ export type FrameworkDefinition = {
1197
1197
  description: string;
1198
1198
  forceTypescript: boolean;
1199
1199
  }>;
1200
+ contentChecksum?: string;
1200
1201
  };
1201
1202
  export type Framework = Omit<FrameworkDefinition, 'base' | 'addOns'> & FileBundleHandler & {
1202
1203
  getAddOns: () => Array<AddOn>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cta-engine",
3
- "version": "0.34.1",
3
+ "version": "0.34.4",
4
4
  "description": "Tanstack Application Builder Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
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 check the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
254
+ Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
255
255
  )
256
256
  }
257
257
 
package/src/types.ts CHANGED
@@ -160,6 +160,7 @@ export type FrameworkDefinition = {
160
160
  forceTypescript: boolean
161
161
  }
162
162
  >
163
+ contentChecksum?: string
163
164
  }
164
165
 
165
166
  export type Framework = Omit<FrameworkDefinition, 'base' | 'addOns'> &