Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Oct 3, 2020
1 parent e222514 commit 111950b
Show file tree
Hide file tree
Showing 6 changed files with 1,131 additions and 1,002 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"project": "./tsconfig.json"
},
"rules": {
"react/destructuring-assignment": "off", // Vscode does not support automatically destructuring, it a pain to add a new variable
"react/destructuring-assignment": "off", // Vscode doesn't support automatically destructuring, it's a pain to add a new variable
"jsx-a11y/anchor-is-valid": "off", // Next.js use his own internal link system
"react/require-default-props": "off", // Allow non-defined react props as undefined
"import/order": [
"error",
{
Expand Down
10 changes: 5 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"editor.detectIndentation": false,
"jest.autoEnable": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.addMissingImports": true,
"source.fixAll.format": true,
"source.fixAll.eslint": true
}
"editor.codeActionsOnSave": [
"source.addMissingImports",
"source.fixAll.format",
"source.fixAll.eslint"
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Developer experience first:

Built-in feature from Next.js:

- ☕ Minify HTML & CSS with [HTMLMinifier](https://www.npmjs.com/package/html-minifier)
- ☕ Minify HTML & CSS
- 💨 Live reload
- ✅ Cache busting

Expand Down
2 changes: 1 addition & 1 deletion _posts/nextjs-blog-boilerplate-presentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Developer experience first:

Built-in feature from Next.js:

- ☕ Minify HTML & CSS with [HTMLMinifier](https://www.npmjs.com/package/html-minifier)
- ☕ Minify HTML & CSS
- 💨 Live reload
- ✅ Cache busting

Expand Down
Loading

0 comments on commit 111950b

Please sign in to comment.