Skip to content

Commit

Permalink
fix(meta,manifest): set default undefined for description and author
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinoli committed Sep 1, 2021
1 parent 79322c1 commit 2d5e472
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/content/en/manifest.md
Expand Up @@ -27,7 +27,7 @@ pwa: {
| --------------------------------- | --------------- | ------------------------------------------------------------ | --------------------------------------------------------------- |
| `name` <sup>\*1</sup> | `String` | `package.json`'s name property | [maximum of 45 characters] |
| `short_name` <sup>\*1</sup> | `String` | `package.json`'s name property | [maximum of 12 characters] |
| `description` <sup>\*2</sup> | `String` | `package.json`'s description property | |
| `description` <sup>\*2</sup> | `String` | `undefined` | |
| `icons` <sup>\*1</sup> | `Array<Object>` | `[]` | (See the [icon module]) |
| `start_url` <sup>\*1</sup> | `String` | `routerBase + '?standalone=true'` | It has to be relative to where the manifest is placed |
| `display` <sup>\*1</sup> | `String` | `'standalone'` | |
Expand Down
4 changes: 2 additions & 2 deletions docs/content/en/meta.md
Expand Up @@ -67,11 +67,11 @@ These articles will help you decide an appropriate value:
- Meta: `title`

### `author`
- Default: *npm_package_author_name*
- Default: `undefined`
- Meta: `author`

### `description`
- Default: *npm_package_description*
- Default: `undefined`
- Meta: `description`

### `theme_color`
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.ts
Expand Up @@ -9,7 +9,7 @@ export function manifest (nuxt, pwa: PWAContext) {
const defaults: ManifestOptions = {
name: process.env.npm_package_name,
short_name: process.env.npm_package_name,
description: process.env.npm_package_description,
description: undefined,
publicPath,
icons: [],
start_url: routerBase + '?standalone=true',
Expand Down
4 changes: 2 additions & 2 deletions src/meta.ts
Expand Up @@ -8,8 +8,8 @@ export function meta (nuxt, pwa: PWAContext, moduleContainer) {
// Defaults
const defaults: MetaOptions = {
name: process.env.npm_package_name,
author: process.env.npm_package_author_name,
description: process.env.npm_package_description,
author: undefined,
description: undefined,
charset: 'utf-8',
viewport: undefined,
mobileApp: true,
Expand Down
2 changes: 1 addition & 1 deletion types/manifest.d.ts
Expand Up @@ -10,7 +10,7 @@ export interface ManifestOptions {
*/
short_name: string,
/**
* Default: _npm_package_description_
* Default: undefined
*/
description: string,
/**
Expand Down
4 changes: 2 additions & 2 deletions types/meta.d.ts
Expand Up @@ -52,13 +52,13 @@ export interface MetaOptions extends Partial<ManifestOptions> {
*/
title?: string,
/**
* Default: _npm_package_author_name_
* Default: undefined
*
* Meta: `author`
*/
author: string,
/**
* Default: _npm_package_description_
* Default: undefined
*
* Meta: `description`
*/
Expand Down

0 comments on commit 2d5e472

Please sign in to comment.