@@ -10,6 +10,7 @@ import { vite } from "./recipes/vite";
1010
1111export { shell } from "./shell" ;
1212export { install , checkPackageManager } from "./dependency-manager" ;
13+ export { addTauriScript } from "./helpers/add-tauri-script" ;
1314import { PackageManager } from "./dependency-manager" ;
1415
1516export interface Recipe {
@@ -46,12 +47,17 @@ export interface Recipe {
4647
4748export const allRecipes : Recipe [ ] = [ vanillajs , reactjs , reactts , vite , vuecli ] ;
4849
49- export const recipeNames : Array < [ string , string ] > = allRecipes . map ( r => [ r . shortName , r . descriptiveName ] ) ;
50+ export const recipeNames : Array < [ string , string ] > = allRecipes . map ( ( r ) => [
51+ r . shortName ,
52+ r . descriptiveName ,
53+ ] ) ;
5054
51- export const recipeByShortName = ( name : string ) => allRecipes . find ( r => r . shortName === name ) ;
55+ export const recipeByShortName = ( name : string ) =>
56+ allRecipes . find ( ( r ) => r . shortName === name ) ;
5257
53- export const recipeByDescriptiveName = ( name : string ) => allRecipes . find ( r => r . descriptiveName === name ) ;
58+ export const recipeByDescriptiveName = ( name : string ) =>
59+ allRecipes . find ( ( r ) => r . descriptiveName === name ) ;
5460
55- export const recipeShortNames = allRecipes . map ( r => r . shortName ) ;
61+ export const recipeShortNames = allRecipes . map ( ( r ) => r . shortName ) ;
5662
57- export const recipeDescriptiveNames = allRecipes . map ( r => r . descriptiveName ) ;
63+ export const recipeDescriptiveNames = allRecipes . map ( ( r ) => r . descriptiveName ) ;
0 commit comments