Skip to content

Commit

Permalink
v0.6.0-beta.0 Search Engine Optimization (#92)
Browse files Browse the repository at this point in the history
- Search Engine Optimization for Top Page (#89 )
- fix iOS hero image (#82 ) (#89) 
- set workflow actions timeout (#87 ) 
- upgrade dependencies (#88 )
- update CI command (#88 )
  • Loading branch information
u-sho authored Oct 16, 2022
1 parent deafe6d commit 8ee35d6
Show file tree
Hide file tree
Showing 53 changed files with 2,634 additions and 2,183 deletions.
4 changes: 2 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*.cjs
*.js
.svelte-kit/**
.vercel/**
static/**
build/**
coverage/**
node_modules/**
10 changes: 7 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ module.exports = {
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unused-vars': 'off'
}
},
{
files: ['*.cjs'],
rules: { '@typescript-eslint/no-require-imports': 'off' }
}
],
rules: {
Expand Down Expand Up @@ -53,12 +57,12 @@ module.exports = {
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
project: './tsconfig.json'
ecmaVersion: 'latest',
project: './tsconfig.eslint.json'
},
env: {
browser: true,
es2020: true,
es2022: true,
node: true
}
};
3 changes: 2 additions & 1 deletion .github/workflows/lintcheck-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ jobs:
- ubuntu-latest
- macos-latest
node_version:
- 14
- 16
- 18
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/snyk-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
jobs:
security:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Run Snyk to check for vulnerabilities
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ $RECYCLE.BIN/
/build
/functions
/.vercel_build_output
/.vercel

### CI outputs ###
snyk.sarif
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/fermium
lts/gallium
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
static/**
build/**
node_modules/**
coverage/**
package-lock.json
.npmrc
.*ignore
LICENSE
.vercel_build_output
.vercel
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"esbenp.prettier-vscode",
"snyk-security.snyk-vulnerability-scanner",
"svelte.svelte-vscode",
"sissel.scss-style-tag"
"sissel.scss-style-tag",
"styled-components.vscode-styled-components"
]
}
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,17 @@ npm run build
Please exec formatter & linter before commit.

```bash
# check & fix format
# check format
npm run format:dry

# fix format
npm run format

# check format & lint
npm run lint
# check lint
npm run lint:dry

# fix lint
npm run lint --fix
npm run lint
```

## Component Naming
Expand Down
202 changes: 0 additions & 202 deletions jest.config.cjs

This file was deleted.

Loading

1 comment on commit 8ee35d6

@vercel
Copy link

@vercel vercel bot commented on 8ee35d6 Oct 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.