Skip to content

Commit 15e5181

Browse files
committed
[Docs] Fix Blueprint parsing errors during nx build docs-site
1 parent d5310ec commit 15e5181

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/playground/blueprints/src/lib/steps/login.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import type { StepHandler } from '.';
77
*
88
* <code>
99
* {
10-
* "step": "login",
11-
* "username": "admin",
10+
* "step": "login",
11+
* "username": "admin"
1212
* }
1313
* </code>
1414
*/

packages/playground/blueprints/src/lib/steps/run-php.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { PHPResponse } from '@php-wasm/universal';
22
import type { StepHandler } from '.';
33
import { logger } from '@php-wasm/logger';
44

5+
/* eslint-disable comment-length/limit-multi-line-comments */
56
/**
67
* @inheritDoc runPHP
78
* @hasRunnableExample
@@ -10,12 +11,11 @@ import { logger } from '@php-wasm/logger';
1011
* <code>
1112
* {
1213
* "step": "runPHP",
13-
* "code": "<?php require_once 'wordpress/wp-load.php';
14-
* wp_insert_post(array('post_title' => 'wp-load.php required for WP
15-
* functionality', 'post_status' => 'publish')); ?>"
14+
* "code": "<?php require_once 'wordpress/wp-load.php'; wp_insert_post(array('post_title' => 'wp-load.php required for WP functionality', 'post_status' => 'publish')); ?>"
1615
* }
1716
* </code>
1817
*/
18+
/* eslint-enable comment-length/limit-multi-line-comments */
1919
export interface RunPHPStep {
2020
/** The step identifier. */
2121
step: 'runPHP';

0 commit comments

Comments
 (0)