Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Heilemann committed Sep 27, 2019
1 parent c01acc0 commit 4c9bc89
Show file tree
Hide file tree
Showing 22 changed files with 3,338 additions and 2,998 deletions.
Binary file modified assets/assets.sketch
Binary file not shown.
Binary file removed assets/logo.sketch
Binary file not shown.
4 changes: 1 addition & 3 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
const path = require('path')
const { yellow } = require('kleur')
const { getPkgVersion, getSiteMetadata } = require('./gatsby/utils')
const { activeEnv, isDev } = require('./gatsby/environment')
const { activeEnv } = require('./gatsby/environment')

console.log(`Using environment: ${yellow(activeEnv)}\n`)

Expand Down Expand Up @@ -144,8 +144,6 @@ module.exports = {
`reports/v${getPkgVersion()}/treemap.html`
),
openAnalyzer: false,
production: true,
disabled: isDev,
},
},
],
Expand Down
135 changes: 135 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "marvin-digital",
"version": "3.1.0",
"version": "3.0.0",
"private": true,
"description": "Portfolio of Marvin Heilemann (@muuvmuuv)",
"repository": {
Expand All @@ -12,16 +12,16 @@
"start": "npm run develop",
"develop": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"clean": "del-cli ./public/** ./.cache",
"build": "gatsby build",
"rebuild": "run-s clean build",
"compose": "npm run build && make up",
"−−−−−−−−−−−−−−−− AUDITS/ANALYTICS −−−−−−−−−−−−−−−−–": "",
"audit": "run-s build lighthouse audit-open",
"audit-open": "run-p audit:*",
"audit:report-mobile": "open ./reports/v$(echo ${npm_package_version} | sed 's/\\(.*\\)\\.[0-9]/\\1/').0/lhr.mobile.html",
"audit:report-desktop": "open ./reports/v$(echo ${npm_package_version} | sed 's/\\(.*\\)\\.[0-9]/\\1/').0/lhr.desktop.html",
"audit:treemap": "open ./reports/v$(echo ${npm_package_version} | sed 's/\\(.*\\)\\.[0-9]/\\1/').0/treemap.html",
"audit:report-mobile": "sh ./scripts/open.sh lhr.mobile.html",
"audit:report-desktop": "sh ./scripts/open.sh lhr.desktop.html",
"audit:treemap": "sh ./scripts/open.sh treemap.html",
"lighthouse": "node ./scripts/lighthouse.js",
"−−−−−−−−−−−−−−−−−−− LINT/TEST −−−−−−−−−−−−−−−−−−−−–": "",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
Expand Down Expand Up @@ -66,6 +66,7 @@
"react-helmet-async": "^1.0.3"
},
"devDependencies": {
"del-cli": "^3.0.0",
"eslint": "^6.4.0",
"eslint-config-react-app": "^5.0.2",
"lighthouse": "^5.4.0",
Expand Down
Loading

0 comments on commit 4c9bc89

Please sign in to comment.