@capgo/capacitor-nfc 8.1.1 → 8.1.2

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
@@ -32,6 +32,20 @@ The most complete documentation will live on the Capgo docs portal. Until then,
32
32
 
33
33
  ## Install
34
34
 
35
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
36
+
37
+ ```bash
38
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
39
+ ```
40
+
41
+ Then use the following prompt:
42
+
43
+ ```text
44
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-nfc` plugin in my project.
45
+ ```
46
+
47
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
48
+
35
49
  ```bash
36
50
  npm install @capgo/capacitor-nfc
37
51
  npx cap sync
@@ -4,7 +4,7 @@ import UIKit
4
4
 
5
5
  @objc(NfcPlugin)
6
6
  public class NfcPlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.1.1"
7
+ private let pluginVersion: String = "8.1.2"
8
8
 
9
9
  public let identifier = "NfcPlugin"
10
10
  public let jsName = "CapacitorNfc"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-nfc",
3
- "version": "8.1.1",
3
+ "version": "8.1.2",
4
4
  "description": "Native NFC tag discovery, reading and writing for Capacitor apps on iOS and Android.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",