Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/someaspy/duckduckno into tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeAspy committed Nov 17, 2023
2 parents 342184f + bdae9df commit 1b25e92
Show file tree
Hide file tree
Showing 9 changed files with 110 additions and 28 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

version: 2
updates:
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: 'weekly'
interval: "weekly"
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Lint
name: ESLint

on:
push:
branches:
- '*'
- "*"
pull_request:
branches:
- '*'
- "*"

jobs:
run-linters:
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/stylelint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: StyleLint

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- uses: pnpm/action-setup@v2
with:
version: latest

- name: Install Node.js dependencies
run: pnpm install

- name: Run linters
run: pnpm run csslint
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope&Public+Sans&display=swap" rel="stylesheet">
<meta content="DuckDuckNo" property="og:title" />
<meta content="Browse the web using DuckDuckNo!" property="og:description" />
<meta content="./src/assets/logo-optimized.png" property="og:image" />
<meta name="description" content="Browse the web using DuckDuckNo!">

</head>

<body>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"vite": "^5.0.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-solid": "^2.7.2",
"vite-plugin-webfont-dl": "^3.9.0"
"vite-plugin-webfont-dl": "^3.9.0",
"vite-plugin-solid-svg": "^0.7.0"
},
"dependencies": {
"@solidjs/router": "^0.8.4",
"solid-js": "^1.8.5",
"vite-plugin-solid-svg": "^0.7.0"
"solid-js": "^1.8.5"
}
}
Loading

0 comments on commit 1b25e92

Please sign in to comment.