Skip to content

Commit 403fc6f

Browse files
remove from LlamaIndexTS
1 parent d919422 commit 403fc6f

File tree

17 files changed

+4887
-28
lines changed

17 files changed

+4887
-28
lines changed

.changeset/config.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": true,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.changeset/hot-windows-watch.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-llama": patch
3+
---
4+
5+
fix missing .env value, improve docs and error message

.eslintrc

+9-17
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
{
2-
"root": false,
2+
"extends": [
3+
"prettier"
4+
],
35
"rules": {
4-
"turbo/no-undeclared-env-vars": [
6+
"max-params": [
57
"error",
6-
{
7-
"allowList": [
8-
"OPENAI_API_KEY",
9-
"LLAMA_CLOUD_API_KEY",
10-
"npm_config_user_agent",
11-
"http_proxy",
12-
"https_proxy",
13-
"MODEL",
14-
"NEXT_PUBLIC_CHAT_API",
15-
"NEXT_PUBLIC_MODEL"
16-
]
17-
}
18-
]
19-
}
20-
}
8+
4
9+
],
10+
"prefer-const": "error",
11+
},
12+
}

.github/ISSUE_TEMPLATE/bugfix.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Bugfix
2+
title: ""
3+
description: Write something like "We notice ... behavior when ... happens instead of ..."
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Details
9+
description: More details about the bug
10+
placeholder: The bug might be in ... file

.github/ISSUE_TEMPLATE/feature.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Feature Request
2+
title: ""
3+
description: Write something like "Write an api endpoint that does "..." in the "..." file".
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Details
9+
description: More details
10+
placeholder: The new endpoint should use the ... class from ... file because it contains ... logic

.github/ISSUE_TEMPLATE/refactor.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Refactor
2+
title: ""
3+
description: Write something like "Modify the ... api endpoint to use ... version and ... framework"
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Details
9+
description: More details
10+
placeholder: We are migrating this function to ... version because ...

.github/workflows/e2e.yml

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: E2E Tests
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
8+
env:
9+
POETRY_VERSION: "1.6.1"
10+
11+
jobs:
12+
e2e:
13+
name: create-llama
14+
timeout-minutes: 60
15+
strategy:
16+
fail-fast: true
17+
matrix:
18+
node-version: [18, 20]
19+
python-version: ["3.11"]
20+
os: [macos-latest, windows-latest]
21+
defaults:
22+
run:
23+
shell: bash
24+
runs-on: ${{ matrix.os }}
25+
steps:
26+
- uses: actions/checkout@v4
27+
- name: Set up python ${{ matrix.python-version }}
28+
uses: actions/setup-python@v4
29+
with:
30+
python-version: ${{ matrix.python-version }}
31+
- name: Install Poetry
32+
uses: snok/install-poetry@v1
33+
with:
34+
version: ${{ env.POETRY_VERSION }}
35+
- uses: pnpm/action-setup@v2
36+
- name: Setup Node.js ${{ matrix.node-version }}
37+
uses: actions/setup-node@v4
38+
with:
39+
node-version: ${{ matrix.node-version }}
40+
cache: "pnpm"
41+
- name: Install dependencies
42+
run: pnpm install
43+
- name: Install Playwright Browsers
44+
run: pnpm exec playwright install --with-deps
45+
working-directory: .
46+
- name: Build create-llama
47+
run: pnpm run build
48+
working-directory: .
49+
- name: Pack
50+
run: pnpm pack --pack-destination ./output
51+
working-directory: .
52+
- name: Extract Pack
53+
run: tar -xvzf ./output/*.tgz -C ./output
54+
working-directory: .
55+
- name: Run Playwright tests
56+
run: pnpm exec playwright test
57+
env:
58+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
59+
working-directory: .
60+
- uses: actions/upload-artifact@v3
61+
if: always()
62+
with:
63+
name: playwright-report
64+
path: ./playwright-report/
65+
retention-days: 30
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Lint on push or pull request
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: pnpm/action-setup@v2
17+
with:
18+
version: latest
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version-file: ".nvmrc"
23+
cache: "pnpm"
24+
- name: Install dependencies
25+
run: pnpm install
26+
- name: Run lint
27+
run: pnpm run lint
28+
- name: Run Prettier
29+
run: pnpm run format

.gitignore

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
node_modules
5+
.pnp
6+
.pnpm-store
7+
.pnp.js
8+
9+
# testing
10+
coverage
11+
12+
# next.js
13+
.next/
14+
out/
15+
build
16+
17+
# misc
18+
.DS_Store
19+
*.pem
20+
21+
# debug
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
# local env files
27+
.env
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
# build
34+
dist/
35+
lib/
36+
37+
# e2e
38+
.cache
39+
test-results/
40+
playwright-report/
41+
blob-report/
42+
playwright/.cache/
43+
.tsbuildinfo
44+
e2e/cache
45+
46+
# intellij
47+
**/.idea

.husky/pre-commit

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pnpm format
2+
pnpm lint

.pretter.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
plugins: ["prettier-plugin-organize-imports"],
3+
};

helpers/typescript.ts

-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import fs from "fs/promises";
22
import os from "os";
33
import path from "path";
44
import { bold, cyan } from "picocolors";
5-
import { version } from "../../core/package.json";
65
import { copy } from "../helpers/copy";
76
import { callPackageManager } from "../helpers/install";
87
import { templatesDir } from "./dir";
@@ -156,11 +155,6 @@ export const installTSTemplate = async ({
156155
packageJson.name = appName;
157156
packageJson.version = "0.1.0";
158157

159-
packageJson.dependencies = {
160-
...packageJson.dependencies,
161-
llamaindex: version,
162-
};
163-
164158
if (framework === "nextjs" && customApiPath) {
165159
console.log(
166160
"\nUsing external API with custom API path:",

package.json

+13-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@
2121
],
2222
"scripts": {
2323
"clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock",
24+
"format": "prettier --ignore-unknown --cache --check .",
25+
"format:write": "prettier --ignore-unknown --write .",
2426
"dev": "ncc build ./index.ts -w -o dist/",
2527
"build": "npm run clean && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
2628
"lint": "eslint . --ignore-pattern dist --ignore-pattern e2e/cache",
2729
"e2e": "playwright test",
28-
"prepublishOnly": "cd ../../ && pnpm run build:release"
30+
"prepare": "husky",
31+
"release": "pnpm run build && changeset publish",
32+
"new-version": "pnpm run build && changeset version"
2933
},
3034
"devDependencies": {
3135
"@playwright/test": "^1.41.1",
@@ -53,7 +57,14 @@
5357
"terminal-link": "^3.0.0",
5458
"update-check": "1.5.4",
5559
"validate-npm-package-name": "3.0.0",
56-
"wait-port": "^1.1.0"
60+
"wait-port": "^1.1.0",
61+
"@changesets/cli": "^2.27.1",
62+
"eslint": "^8.56.0",
63+
"husky": "^9.0.10",
64+
"prettier": "^3.2.5",
65+
"prettier-plugin-organize-imports": "^3.2.4",
66+
"typescript": "^5.3.3",
67+
"eslint-config-prettier": "^8.10.0"
5768
},
5869
"engines": {
5970
"node": ">=16.14.0"

0 commit comments

Comments
 (0)