@capgo/native-audio 7.7.0 → 7.7.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/Package.swift
CHANGED
|
@@ -13,7 +13,7 @@ let package = Package(
|
|
|
13
13
|
)
|
|
14
14
|
],
|
|
15
15
|
dependencies: [
|
|
16
|
-
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.
|
|
16
|
+
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0")
|
|
17
17
|
],
|
|
18
18
|
targets: [
|
|
19
19
|
.target(
|
|
@@ -11,7 +11,7 @@ enum MyError: Error {
|
|
|
11
11
|
/// here: https://capacitor.ionicframework.com/docs/plugins/ios
|
|
12
12
|
@objc(NativeAudio)
|
|
13
13
|
public class NativeAudio: CAPPlugin, AVAudioPlayerDelegate, CAPBridgedPlugin {
|
|
14
|
-
private let PLUGIN_VERSION: String = "7.7.
|
|
14
|
+
private let PLUGIN_VERSION: String = "7.7.2"
|
|
15
15
|
public let identifier = "NativeAudio"
|
|
16
16
|
public let jsName = "NativeAudio"
|
|
17
17
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/native-audio",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.2",
|
|
4
4
|
"description": "A native plugin for native audio engine",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/plugin.cjs.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"test": "npm run test:ios",
|
|
41
41
|
"test:ios": "cd ios && xcodebuild test -workspace Plugin.xcworkspace -scheme Plugin -destination 'platform=iOS Simulator,name=iPhone 16' && cd ..",
|
|
42
42
|
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
|
|
43
|
-
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --
|
|
43
|
+
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
|
|
44
44
|
"eslint": "eslint . --ext .ts",
|
|
45
45
|
"prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
|
|
46
46
|
"swiftlint": "node-swiftlint",
|