Skip to content

Commit d4f93a7

Browse files
committed
chore: fix nits
1 parent e1b220f commit d4f93a7

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

packages/cli/src/lib/Compiler.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export class Compiler {
5050
await this._copyResourcesFolder();
5151

5252
// Output docs if any
53-
5453
await this._maybeAssembleDocsDir();
5554
}
5655
};

packages/js/manifests/polywrap/src/formats/polywrap.docs/0.1.0.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export interface DocsManifest {
2222
/**
2323
* Website related to the wrap.
2424
*/
25-
websiteUrl?: string;
25+
website?: string;
2626
/**
2727
* Url of the wrap's repository.
2828
*/
29-
repositoryUrl?: string;
29+
repository?: string;
3030
/**
3131
* Path to the readme page.
3232
*/

packages/manifests/polywrap/formats/polywrap.docs/0.1.0.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"type": "string",
1818
"description": "Path to the wrap's logo."
1919
},
20-
"websiteUrl": {
20+
"website": {
2121
"type": "string",
2222
"description": "Website related to the wrap."
2323
},
24-
"repositoryUrl": {
24+
"repository": {
2525
"type": "string",
2626
"description": "Url of the wrap's repository."
2727
},

0 commit comments

Comments
 (0)