Compare commits

...

10 Commits

Author SHA1 Message Date
sweep-ai[bot] 26a4aaa4f9 Merge main into sweep/add-model-selection-cli 2023-11-15 04:55:23 +00:00
sweep-ai[bot] 91509720a0 Merge main into sweep/add-model-selection-cli 2023-11-15 04:49:36 +00:00
sweep-ai[bot] f54fb7f697 Merge main into sweep/add-model-selection-cli 2023-11-15 01:24:44 +00:00
sweep-ai[bot] 0266c3da9a feat: Updated packages/create-llama/CHANGELOG.md 2023-11-15 01:03:17 +00:00
sweep-ai[bot] 02c34ba96f feat: Updated packages/create-llama/package.json 2023-11-15 01:02:10 +00:00
sweep-ai[bot] e6a0c548e8 feat: Updated packages/create-llama/README.md 2023-11-15 00:57:14 +00:00
sweep-ai[bot] af12adba22 feat: Updated packages/create-llama/package.json 2023-11-15 00:55:09 +00:00
sweep-ai[bot] f8eecbe6d0 feat: Updated packages/create-llama/package.json 2023-11-15 00:50:45 +00:00
sweep-ai[bot] 962126b77f feat: Updated packages/create-llama/index.ts 2023-11-15 00:45:16 +00:00
sweep-ai[bot] 6c2fc21496 feat: Updated packages/create-llama/create-app.ts 2023-11-15 00:35:45 +00:00
5 changed files with 30 additions and 0 deletions
+18
View File
@@ -29,3 +29,21 @@
### Patch Changes ### Patch Changes
- e2a6805: Hello Create Llama (thanks Marcus!) - e2a6805: Hello Create Llama (thanks Marcus!)
## 0.0.6
### Patch Changes
- Add model selection prompt
## 0.0.3
### Patch Changes
- 91b42a3: change version (thanks Marcus)
## 0.0.2
### Patch Changes
- e2a6805: Hello Create Llama (thanks Marcus!)
+3
View File
@@ -28,6 +28,9 @@ pnpm create llama@latest
You will be asked for the name of your project, along with other configuration options. You will be asked for the name of your project, along with other configuration options.
Here is an example:
You will be asked for the name of your project, along with other configuration options, including the model selection.
Here is an example: Here is an example:
```bash ```bash
+1
View File
@@ -13,6 +13,7 @@ import type { InstallTemplateArgs } from "./templates";
import { installTemplate } from "./templates"; import { installTemplate } from "./templates";
export async function createApp({ export async function createApp({
import { prompt } from "inquirer";
template, template,
framework, framework,
engine, engine,
+1
View File
@@ -9,6 +9,7 @@ import { blue, bold, cyan, green, red, yellow } from "picocolors";
import prompts from "prompts"; import prompts from "prompts";
import checkForUpdate from "update-check"; import checkForUpdate from "update-check";
import { createApp } from "./create-app"; import { createApp } from "./create-app";
import { prompt } from "inquirer";
import { getPkgManager } from "./helpers/get-pkg-manager"; import { getPkgManager } from "./helpers/get-pkg-manager";
import { isFolderEmpty } from "./helpers/is-folder-empty"; import { isFolderEmpty } from "./helpers/is-folder-empty";
import { validateNpmName } from "./helpers/validate-pkg"; import { validateNpmName } from "./helpers/validate-pkg";
+7
View File
@@ -44,6 +44,13 @@
"got": "10.7.0", "got": "10.7.0",
"picocolors": "1.0.0", "picocolors": "1.0.0",
"prompts": "2.1.0", "prompts": "2.1.0",
"prettier": "^x.x.x",
"prettier": "^x.x.x"
"prompts": "2.1.0",
"prettier": "^x.x.x"
"fs-promise": "^3.0.0",
"stable": "^0.2.0",
"trim": "^1.0.3"
"tar": "6.1.15", "tar": "6.1.15",
"terminal-link": "^3.0.0", "terminal-link": "^3.0.0",
"update-check": "1.5.4", "update-check": "1.5.4",