Fix description undefined

This commit is contained in:
Sam Carlton 2022-06-06 15:54:59 -05:00
parent 7d9600c791
commit b1e756f2d3
2 changed files with 5 additions and 4 deletions

View file

@ -48,7 +48,7 @@ export default {
lang: 'en', lang: 'en',
}, },
title: 'Does It ARM', title: 'Does It ARM',
description: process.env.npm_package_description, description: process.env.npm_package_config_verbiage_description,
meta: [ meta: [
{ charset: 'utf-8' }, { charset: 'utf-8' },
@ -59,7 +59,7 @@ export default {
{ {
hid: 'description', hid: 'description',
name: 'description', name: 'description',
content: process.env.npm_package_description content: process.env.npm_package_config_verbiage_description
}, },
{ {
'property': 'og:image', 'property': 'og:image',

View file

@ -1,7 +1,7 @@
{ {
"name": "doesitarm", "name": "doesitarm",
"version": "1.0.0", "version": "1.0.0",
"description": "Find out the latest app support for Apple Silicon and the $npm_package_config_verbiage_processors Processors", "description": "Find out the latest app support for Apple Silicon and the Apple M2 and M1 Ultra Processors",
"author": "Sam Carlton", "author": "Sam Carlton",
"private": true, "private": true,
"ava": { "ava": {
@ -12,7 +12,8 @@
"config": { "config": {
"verbiage": { "verbiage": {
"processors": "Apple M2 and M1 Ultra", "processors": "Apple M2 and M1 Ultra",
"macs": "Apple M2 or M1 Ultra Mac" "macs": "Apple M2 or M1 Ultra Mac",
"description": "Find out the latest app support for Apple Silicon and the Apple M2 and M1 Ultra Processors"
} }
}, },
"scripts": { "scripts": {