Skip to content

Commit cd86e5c

Browse files
authored
Merge pull request wasp-lang#515 from wasp-lang/franjo/refactor-llms-txt-handling
2 parents c633783 + 0bd7bd3 commit cd86e5c

File tree

5 files changed

+5
-2298
lines changed

5 files changed

+5
-2298
lines changed

.github/workflows/blog-deployment.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ jobs:
2929
working-directory: ./opensaas-sh/blog
3030
run: npm install
3131

32-
- name: Generate LLM files
33-
working-directory: ./opensaas-sh/blog
34-
run: npm run generate-llm-files
35-
3632
- name: Build site
3733
working-directory: ./opensaas-sh/blog
3834
run: npm run build
@@ -53,10 +49,6 @@ jobs:
5349
working-directory: ./opensaas-sh/blog
5450
run: npm install
5551

56-
- name: Generate LLM files
57-
working-directory: ./opensaas-sh/blog
58-
run: npm run generate-llm-files
59-
6052
- name: Build site
6153
working-directory: ./opensaas-sh/blog
6254
run: npm run build

opensaas-sh/blog/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@ pnpm-debug.log*
2121

2222
# Local Netlify folder
2323
.netlify
24+
25+
# LLM files
26+
llms.txt
27+
llms-full.txt

opensaas-sh/blog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"astro": "astro",
7-
"build": "astro check && astro build",
7+
"build": "npm run generate-llm-files && astro check && astro build",
88
"dev": "astro dev",
99
"generate-llm-files": "node ./scripts/generate-llm-files.mjs",
1010
"preview": "astro preview",

0 commit comments

Comments
 (0)