Skip to content

Commit

Permalink
Update blueprint.yaml to optimize build process, remove astro-pagefin…
Browse files Browse the repository at this point in the history
…d dependency
  • Loading branch information
derekwolpert committed Feb 9, 2024
1 parent 36e1c3a commit b57d966
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
dist
*.tgz
*.tgz
.DS_Store
10 changes: 8 additions & 2 deletions .noop/blueprint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@
components:
- name: Website
type: static
image: node:alpine
image: node:20-alpine
hosting:
index: index.html
build:
steps:
- copy: .
- copy: package*.json
destination: ./
- run: npm ci
- copy: astro.config.mjs
- copy: tailwind.config.cjs
- copy: public/
- copy: lib/
- copy: src/
- run: npm run build
- directory: dist/
routes:
Expand Down
10 changes: 0 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"astro-pagefind": "github:1800joe/astro-pagefind#main",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
Expand Down

0 comments on commit b57d966

Please sign in to comment.