forked from jscraftcamp/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move website to SvelteKit (jscraftcamp#1361)
* chore: Introduce SvelteKit and remove all content Signed-off-by: Joern Bernhardt <[email protected]> * feat: Create a PageLayout component and a second route Signed-off-by: Joern Bernhardt <[email protected]> * feat: Add more pages and some styling Signed-off-by: Joern Bernhardt <[email protected]> * feat: Style main page, add footer Signed-off-by: Joern Bernhardt <[email protected]> * feat: Add and style team page Signed-off-by: Joern Bernhardt <[email protected]> * feat: Add social media logos, fix footer Signed-off-by: Joern Bernhardt <[email protected]> * fix: Correct styling Signed-off-by: Joern Bernhardt <[email protected]> * chore: Add sponsoring info, prettier Signed-off-by: Joern Bernhardt <[email protected]> * chore: Move components into more appropriate directories Signed-off-by: Joern Bernhardt <[email protected]> * feat: Mobile menu Signed-off-by: Joern Bernhardt <[email protected]> * chore: Remove chromatic Signed-off-by: Joern Bernhardt <[email protected]> * chore: Remove workflow file until registration Signed-off-by: Joern Bernhardt <[email protected]> * chore: Update netlify deployment to use build dir Signed-off-by: Joern Bernhardt <[email protected]> * fix: Use full height of page Signed-off-by: Joern Bernhardt <[email protected]> * fix: Style team Signed-off-by: Joern Bernhardt <[email protected]> * feat: Show date for registration Signed-off-by: Joern Bernhardt <[email protected]> * feat: Improve link styling Signed-off-by: Joern Bernhardt <[email protected]> * feat: Style Code of Conduct page Signed-off-by: Joern Bernhardt <[email protected]> * chore: Update dependencies, reintroduce registration tests Signed-off-by: Joern Bernhardt <[email protected]> * chore: Add failing test to check GitHub action Signed-off-by: Joern Bernhardt <[email protected]> * chore: Add working test to check GitHub action Signed-off-by: Joern Bernhardt <[email protected]> * chore: Remove warning of SvelteKit tsconfig Signed-off-by: Joern Bernhardt <[email protected]> * fix: Fix tests for tags and typescript Signed-off-by: Joern Bernhardt <[email protected]> * chore: Remove participants Signed-off-by: Joern Bernhardt <[email protected]> * chore: Update readme and pin dependencies Signed-off-by: Joern Bernhardt <[email protected]> * chore: Add renovate.json Signed-off-by: Joern Bernhardt <[email protected]> * chore: Remove playwright Signed-off-by: Joern Bernhardt <[email protected]> * fix: Correct test for files that do not belong in the participants dir Signed-off-by: Joern Bernhardt <[email protected]> --------- Signed-off-by: Joern Bernhardt <[email protected]>
- Loading branch information
Showing
235 changed files
with
3,781 additions
and
19,899 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.DS_Store | ||
node_modules | ||
/build | ||
/.svelte-kit | ||
/package | ||
.env | ||
.env.* | ||
!.env.example | ||
|
||
# Ignore files for PNPM, NPM and YARN | ||
pnpm-lock.yaml | ||
package-lock.json | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'], | ||
plugins: ['svelte3', '@typescript-eslint'], | ||
ignorePatterns: ['*.cjs'], | ||
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], | ||
settings: { | ||
'svelte3/typescript': () => require('typescript') | ||
}, | ||
parserOptions: { | ||
sourceType: 'module', | ||
ecmaVersion: 2020 | ||
}, | ||
env: { | ||
browser: true, | ||
es2017: true, | ||
node: true | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,10 @@ | ||
.DS_Store | ||
node_modules | ||
dist | ||
tmp | ||
.idea | ||
|
||
src/participants.json | ||
|
||
*.iml | ||
|
||
# new since gatsby: | ||
|
||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# dotenv environment variables file | ||
/build | ||
/.svelte-kit | ||
/package | ||
.env | ||
|
||
# gatsby files | ||
.cache/ | ||
public | ||
|
||
# Mac files | ||
.DS_Store | ||
|
||
# Yarn | ||
yarn-error.log | ||
.pnp/ | ||
.pnp.js | ||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# Local Netlify folder | ||
.netlify | ||
storybook-static | ||
|
||
build-storybook.log | ||
.env.* | ||
!.env.example | ||
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
engine-strict=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.DS_Store | ||
node_modules | ||
/build | ||
/.svelte-kit | ||
/package | ||
.env | ||
.env.* | ||
!.env.example | ||
|
||
# Ignore files for PNPM, NPM and YARN | ||
pnpm-lock.yaml | ||
package-lock.json | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"endOfLine": "lf", | ||
"semi": false, | ||
"singleQuote": false, | ||
"tabWidth": 2, | ||
"trailingComma": "es5" | ||
"useTabs": true, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 100, | ||
"plugins": ["prettier-plugin-svelte"], | ||
"pluginSearchDirs": ["."], | ||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.