Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* update deps

* workflows/new-site.yml fix npm ERR! Missing script: "dev"

* add https://github.com/ollama-webui/ollama-webui

* update site/src/sites.yml

fix broken Gitpod repo URL
  • Loading branch information
janosh authored Jan 1, 2024
1 parent cf671c4 commit 61c980f
Show file tree
Hide file tree
Showing 10 changed files with 523 additions and 465 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.repository_owner == 'janosh'
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run markdown link check
uses: gaurav-nelson/github-action-markdown-link-check@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/new-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
if: github.repository_owner == 'janosh'
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Set up node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 19
cache: npm
Expand All @@ -27,11 +27,11 @@ jobs:

- name: Update existing site screenshots and repo contributors on scheduled runs
if: github.event_name == 'schedule'
run: ACTION=update-existing npm run dev
run: ACTION=update-existing cd site && npm run dev

- name: Add screenshots for new sites and update readme
if: github.event_name != 'schedule'
run: npm run dev
run: cd site && npm run dev

- name: Push changes if any
run: |
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
files: ^tools\.yml$

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.3
rev: v4.0.0-alpha.8
hooks:
- id: prettier
args: [--config, site/.prettierrc.yml, --write] # edit files in-place
Expand All @@ -36,7 +36,7 @@ repos:
args: [--config-file, .github/yamllint.yml]

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.37.0
rev: v0.38.0
hooks:
- id: markdownlint
# MD013: line too long
Expand All @@ -53,7 +53,7 @@ repos:
stages: [commit, commit-msg]

- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.53.0
rev: v9.0.0-alpha.0
hooks:
- id: eslint
types: [file]
Expand Down
387 changes: 199 additions & 188 deletions readme.md

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,30 @@
"test": "playwright test tests/*.test.ts"
},
"devDependencies": {
"@iconify/svelte": "^3.1.4",
"@playwright/test": "^1.38.1",
"@rollup/plugin-yaml": "^4.1.1",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.25.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@iconify/svelte": "^3.1.6",
"@playwright/test": "^1.40.1",
"@rollup/plugin-yaml": "^4.1.2",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-plugin-svelte": "^2.33.2",
"eslint": "^8.56.0",
"eslint-plugin-svelte": "^2.35.1",
"js-yaml": "^4.1.0",
"marked": "^9.0.3",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"puppeteer": "^21.3.6",
"sharp": "^0.32.6",
"svelte": "4.2.1",
"svelte-check": "^3.5.2",
"marked": "^11.1.1",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"puppeteer": "^21.6.1",
"sharp": "^0.33.1",
"svelte": "4.2.8",
"svelte-check": "^3.6.2",
"svelte-multiselect": "^10.2.0",
"svelte-preprocess": "^5.0.4",
"svelte-preprocess": "^5.1.3",
"svelte-zoo": "^0.4.9",
"svelte2tsx": "^0.6.22",
"typescript": "5.2.2",
"vite": "^4.4.9"
"svelte2tsx": "^0.6.27",
"typescript": "5.3.3",
"vite": "^5.0.10"
},
"keywords": [
"sveltekit",
Expand Down
Loading

0 comments on commit 61c980f

Please sign in to comment.