@newhighsco/press-start 2.0.4 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@newhighsco/press-start",
3
3
  "description": "Chipset + Next.js site starter by New High Score",
4
- "version": "2.0.4",
4
+ "version": "2.1.3",
5
5
  "author": "New High Score <hello@newhighsco.re>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -25,8 +25,8 @@
25
25
  "serve": "yarn --cwd template serve",
26
26
  "test": "yarn lint",
27
27
  "lint": "npm-run-all --parallel lint:*",
28
- "lint:js": "eslint --cache --ext .js,.json,.jsx,.mdx .",
29
- "lint:css": "stylelint '**/*.{css,scss}' --cache",
28
+ "lint:js": "eslint --cache --ignore-path .gitignore --ext .js,.json,.jsx,.mdx .",
29
+ "lint:css": "stylelint '**/*.{css,scss}' --cache --ignore-path .gitignore",
30
30
  "lint:deps": "cd template && yalc check",
31
31
  "format": "npm-run-all --parallel format:*",
32
32
  "format:js": "yarn lint:js --fix",
@@ -34,26 +34,26 @@
34
34
  "format:deps": "cd template && yalc remove $npm_package_name && yarn unlink $npm_package_name && yarn install --check-files"
35
35
  },
36
36
  "dependencies": {
37
- "next-seo": "4.28.1"
37
+ "next-seo": "5.1.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@commitlint/cli": "13.2.0",
41
- "@newhighsco/commitlint-config": "1.0.15",
40
+ "@commitlint/cli": "16.1.0",
41
+ "@newhighsco/commitlint-config": "1.0.22",
42
42
  "@newhighsco/editor-config": "1.1.2",
43
- "@newhighsco/eslint-config": "2.3.30",
44
- "@newhighsco/prettier-config": "2.0.14",
45
- "@newhighsco/release-config": "1.0.71",
46
- "@newhighsco/stylelint-config": "2.0.46",
47
- "eslint": "7.32.0",
48
- "husky": "7.0.2",
43
+ "@newhighsco/eslint-config": "2.3.60",
44
+ "@newhighsco/prettier-config": "2.0.16",
45
+ "@newhighsco/release-config": "1.1.5",
46
+ "@newhighsco/stylelint-config": "3.0.11",
47
+ "eslint": "8.8.0",
48
+ "husky": "7.0.4",
49
49
  "npm-run-all": "4.1.5",
50
- "prettier": "2.4.1",
51
- "semantic-release": "18.0.0",
52
- "stylelint": "13.13.1",
50
+ "prettier": "2.5.1",
51
+ "semantic-release": "19.0.2",
52
+ "stylelint": "14.3.0",
53
53
  "yalc": "1.0.0-pre.53"
54
54
  },
55
55
  "peerDependencies": {
56
- "next": "11.1.2"
56
+ "next": "12.0.10"
57
57
  },
58
58
  "commitlint": {
59
59
  "extends": [
@@ -5,10 +5,16 @@ import { DefaultSeo } from 'next-seo'
5
5
  import { SiteContainer, ThemeProvider } from '@newhighsco/chipset'
6
6
 
7
7
  const AppPage = ({ Component, pageProps, theme, config, meta }) => {
8
- const { name, description, openGraphImage, twitterHandle, themeColor, logo } =
9
- config
8
+ const {
9
+ name,
10
+ description,
11
+ openGraphImage,
12
+ twitterHandle,
13
+ themeColor,
14
+ logo,
15
+ url
16
+ } = config
10
17
  const icon = logo?.vector || logo?.bitmap
11
- const url = process.env.NEXT_PUBLIC_SITE_URL
12
18
 
13
19
  meta = {
14
20
  ...meta,