@capgo/capacitor-native-market 8.0.34 → 8.0.36
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/README.md
CHANGED
|
@@ -45,6 +45,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/native-m
|
|
|
45
45
|
|
|
46
46
|
## Installation
|
|
47
47
|
|
|
48
|
+
You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Then use the following prompt:
|
|
55
|
+
|
|
56
|
+
```text
|
|
57
|
+
Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-native-market` plugin in my project.
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
|
|
61
|
+
|
|
48
62
|
To use npm
|
|
49
63
|
|
|
50
64
|
```bash
|
|
@@ -25,7 +25,7 @@ struct APIResult: Codable {
|
|
|
25
25
|
*/
|
|
26
26
|
@objc(NativeMarket)
|
|
27
27
|
public class NativeMarket: CAPPlugin, CAPBridgedPlugin {
|
|
28
|
-
private let pluginVersion: String = "8.0.
|
|
28
|
+
private let pluginVersion: String = "8.0.36"
|
|
29
29
|
public let identifier = "NativeMarketPlugin"
|
|
30
30
|
public let jsName = "NativeMarket"
|
|
31
31
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/capacitor-native-market",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.36",
|
|
4
4
|
"description": "A native market plugin for linking to google play or app store.",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"main": "dist/plugin.cjs.js",
|
|
@@ -46,7 +46,10 @@
|
|
|
46
46
|
"clean": "rimraf ./dist",
|
|
47
47
|
"watch": "tsc --watch",
|
|
48
48
|
"prepublishOnly": "bun run build",
|
|
49
|
-
"check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
|
|
49
|
+
"check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs",
|
|
50
|
+
"example:install": "cd example-app && bun install --frozen-lockfile",
|
|
51
|
+
"example:build": "bun run build && cd example-app && bun install --frozen-lockfile && bun run build",
|
|
52
|
+
"example:capgo:deploy": "bun run example:build && bun scripts/deploy-example-capgo.mjs"
|
|
50
53
|
},
|
|
51
54
|
"devDependencies": {
|
|
52
55
|
"@capacitor/android": "^8.0.0",
|