Skip to content

Commit c677583

Browse files
committedFeb 7, 2022
feat(): first step of adding new plugin
1 parent 95e0e45 commit c677583

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed
 

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"zenn-content-css": "^0.1.100"
2020
},
2121
"devDependencies": {
22+
"@capacitor-community/admob": "^3.2.0",
2223
"@capacitor-community/stripe": "^3.5.3",
2324
"@capacitor/docgen": "^0.1.0",
2425
"@types/fs-extra": "^9.0.13",

‎src/docs/admob/app-admob/app-admob.scss

Whitespace-only changes.
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { Component, h } from '@stencil/core';
2+
3+
@Component({
4+
tag: 'app-admob',
5+
styleUrl: 'app-admob.scss',
6+
shadow: true,
7+
})
8+
export class AppAdmob {
9+
render() {
10+
return (
11+
<div>
12+
Hello World!!
13+
</div>
14+
);
15+
}
16+
}

‎src/docs/admob/docs.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"Guide": [
3+
{
4+
"title": "Introduction",
5+
"path": "/",
6+
"filePath": ""
7+
}
8+
]
9+
}

‎src/docs/packages.json

+4
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22
"stripe": {
33
"name": "capacitor-community/stripe",
44
"repository": "https://github.com/rdlabo-team/capacitor-plugins-docs/"
5+
},
6+
"admob": {
7+
"name": "capacitor-community/admob",
8+
"repository": "https://github.com/rdlabo-team/capacitor-plugins-docs/"
59
}
610
}

0 commit comments

Comments
 (0)
Please sign in to comment.