test-bdk-cli 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/templates/react/README.md +3 -0
- package/templates/react/assets/iframe.html +13 -0
- package/templates/react/assets/logo-small.svg +4 -0
- package/templates/react/assets/logo.svg +6 -0
- package/templates/react/manifest.json +8 -0
- package/templates/react/translations/en.json +8 -0
package/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
6
|
+
<title>Sample Iframe</title>
|
|
7
|
+
<style>body{font-family:Arial,Helvetica,sans-serif;padding:20px}</style>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<h1>Hello from the app iframe</h1>
|
|
11
|
+
<p>This is a simple placeholder iframe page generated by the CLI.</p>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"name": "Zen Tunes",
|
|
4
|
+
"short_description": "Play the famous zen tunes in your help desk.",
|
|
5
|
+
"long_description": "Play the famous zen tunes in your help desk and \n listen to the beats it has to offer.",
|
|
6
|
+
"installation_instructions": "Simply click install."
|
|
7
|
+
}
|
|
8
|
+
}
|