capacitor-mobilecron 0.2.2 → 0.2.3
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/CapacitorMobilecron.podspec +19 -0
- package/package.json +3 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(File.dirname(__FILE__), 'package.json')))
|
|
4
|
+
|
|
5
|
+
Pod::Spec.new do |s|
|
|
6
|
+
s.name = 'CapacitorMobilecron'
|
|
7
|
+
s.version = package['version']
|
|
8
|
+
s.summary = package['description']
|
|
9
|
+
s.license = package['license']
|
|
10
|
+
s.homepage = 'https://github.com/rogelioRuiz/capacitor-mobilecron'
|
|
11
|
+
s.author = 'Rogelio Ruiz'
|
|
12
|
+
s.source = { :git => 'https://github.com/rogelioRuiz/capacitor-mobilecron.git', :tag => s.version.to_s }
|
|
13
|
+
|
|
14
|
+
s.source_files = 'ios/Plugin/**/*.{swift,h,m}'
|
|
15
|
+
s.ios.deployment_target = '14.0'
|
|
16
|
+
|
|
17
|
+
s.dependency 'Capacitor'
|
|
18
|
+
s.swift_version = '5.9'
|
|
19
|
+
end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "capacitor-mobilecron",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Capacitor scheduling primitive that emits job due events across web, Android, and iOS",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"ios",
|
|
21
21
|
"dist",
|
|
22
22
|
"src",
|
|
23
|
+
"CapacitorMobilecron.podspec",
|
|
23
24
|
"package.json",
|
|
24
25
|
"README.md"
|
|
25
26
|
],
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
"test:watch": "vitest",
|
|
60
61
|
"test:coverage": "vitest run --coverage",
|
|
61
62
|
"test:e2e": "node tests/e2e/test-e2e.mjs",
|
|
63
|
+
"test:e2e:ios": "node tests/e2e/test-e2e-ios.mjs",
|
|
62
64
|
"prepack": "npm run build"
|
|
63
65
|
},
|
|
64
66
|
"peerDependencies": {
|