Skip to content

Commit

Permalink
Merge branch 'release/v1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinsonc committed Nov 29, 2020
2 parents 31e47c3 + dfad679 commit a579b3a
Show file tree
Hide file tree
Showing 6 changed files with 1,847 additions and 2,511 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ module.exports = {
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off',
'no-use-before-define': 'off', // Disable this rule in favor of @typescript-eslint/no-use-before-define
'@typescript-eslint/no-use-before-define': 'error',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'warn',
},
Expand Down
4 changes: 0 additions & 4 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ module.exports = withSourceMaps(
APP_VERSION: packageJson.version,
},

sassLoaderOptions: {
sourceMap: true,
includePaths: ['src/styles', 'node_modules'],
},
// We can ignore Typescript issues detected by NextJS because we are
// using ESLint to do the validation.
typescript: {
Expand Down
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,46 +20,46 @@
"url": "https://github.com/jrobinsonc/nextjs-starter-kit/issues"
},
"dependencies": {
"next": "9.5.4",
"react": "16.13.1",
"react-dom": "16.13.1"
"next": "10.0.3",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@types/node": "^14.6.2",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-source-maps": "^0.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-jest": "^26.6.3",
"babel-plugin-preval": "^5.0.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.3.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^26.4.2",
"node-sass": "^4.14.1",
"prettier": "^2.1.1",
"stylelint": "^13.6.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0",
"typescript": "^4.0.2"
"typescript": "^4.1.2"
},
"engines": {
"node": ">=10.16",
Expand Down
Empty file removed src/styles/global/_layout.scss
Empty file.
1 change: 0 additions & 1 deletion src/styles/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@

@import './global/vars';
@import './global/base';
@import './global/layout';
Loading

0 comments on commit a579b3a

Please sign in to comment.