create-gramstax 0.3.19 → 0.3.21

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.
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "logging-pretty": "^3.0.0",
39
- "gramstax": "^0.3.18"
39
+ "gramstax": "^0.3.20"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "typescript": "5.9.3"
@@ -17,7 +17,7 @@ export class GeneralErrorInputNotFoundPage extends PageBase {
17
17
  }
18
18
  }
19
19
 
20
- static template = /*jsx*/ `
20
+ static template = `
21
21
  <base>
22
22
  ${this.kbc.home()}
23
23
  <message>
@@ -27,7 +27,7 @@ export class GeneralErrorPage extends PageBase {
27
27
  }
28
28
  }
29
29
 
30
- static template = /*jsx*/ `
30
+ static template = `
31
31
  <base>
32
32
  ${this.kbc.home()}
33
33
  <message>
@@ -25,7 +25,7 @@ export class HelpPage extends PageBase {
25
25
  await this.internal(false)
26
26
  }
27
27
 
28
- static template = /*jsx*/ `
28
+ static template = `
29
29
  <base>
30
30
  ${this.kbc.back()}
31
31
  <message><b>Help message</b></message>
@@ -42,7 +42,7 @@ export class InputTextPage extends PageBase {
42
42
  await this.reply(this.kb(baseId), data, baseId)
43
43
  }
44
44
 
45
- static template = /*jsx*/ `
45
+ static template = `
46
46
  <base>
47
47
  ${this.kbc.cancel()}
48
48
  <message>Please input text you want view</message>
@@ -26,7 +26,7 @@ export class StartPage extends PageBase {
26
26
  await this.internal(false)
27
27
  }
28
28
 
29
- static template = /*jsx*/ `
29
+ static template = `
30
30
  <base id="with-import-and-you-can-use-components">
31
31
  <keyboard>❓ Help</keyboard>
32
32
  <keyboard lang="it">❓ Aiuto</keyboard>
@@ -17,7 +17,7 @@ export class UserNameNotFoundPage extends PageBase {
17
17
  }
18
18
  }
19
19
 
20
- static template = /*jsx*/ `
20
+ static template = `
21
21
  <base>
22
22
  ${this.kbc.home()}
23
23
  <message>Please set the username first before using the bot.</message>
package/package.json CHANGED
@@ -1,22 +1,13 @@
1
1
  {
2
2
  "name": "create-gramstax",
3
- "version": "0.3.19",
3
+ "version": "0.3.21",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "provenance": false
8
8
  },
9
- "description": "CLI tool to quickly create a new Gramstax Telegram bot project with all the best practices",
10
- "keywords": [
11
- "create-gramstax",
12
- "gramstax",
13
- "telegram",
14
- "bot",
15
- "cli",
16
- "generator",
17
- "scaffold",
18
- "telegram-bot"
19
- ],
9
+ "description": "",
10
+ "keywords": [],
20
11
  "scripts": {
21
12
  "nx-release-publish": "npm publish --access public"
22
13
  },
@@ -30,7 +21,7 @@
30
21
  },
31
22
  "homepage": "https://github.com/gramstax/gramstax",
32
23
  "author": "gramstax",
33
- "license": "MIT",
24
+ "license": "PROPRIETARY",
34
25
  "type": "module",
35
26
  "main": "./dist/src/index.js",
36
27
  "module": "./dist/src/index.mjs",