@aks-dev/easyui 1.2.2 → 1.2.4

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.
@@ -0,0 +1,30 @@
1
+
2
+ require "json"
3
+
4
+ package = JSON.parse(File.read(File.join(__dir__, "package.json")))
5
+
6
+ Pod::Spec.new do |s|
7
+ s.name = "RNPermissions"
8
+ s.version = package["version"]
9
+ s.license = package["license"]
10
+ s.summary = package["description"]
11
+ s.author = package["author"]
12
+ s.homepage = package["homepage"]
13
+
14
+ s.platform = { :ios => "12.4" }
15
+ s.source = { :git => "https://gitee.com/the_period_of_the_ten_kingdoms/aks-easyui.git", :tag => "master" }
16
+ s.source_files = "**/*.{h,m,mm,swift,xib,c}"
17
+ s.requires_arc = true
18
+ s.resource_bundles = { 'RNEasyui' => ['assets/*'] }
19
+
20
+
21
+ # s.dependency "React"
22
+ #s.dependency "others"
23
+ if ENV['RCT_NEW_ARCH_ENABLED'] == "1" then
24
+ install_modules_dependencies(s)
25
+ else
26
+ s.dependency "React-Core"
27
+ end
28
+ end
29
+
30
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aks-dev/easyui",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "工具箱",
5
5
  "exports": {
6
6
  ".": {
@@ -37,12 +37,13 @@
37
37
  "!/i.sh",
38
38
  "!/src/**/assets/*",
39
39
  "!/docs",
40
- "/src/specs"
40
+ "/src/specs",
41
+ "RNEasyui.podspec"
41
42
  ],
42
43
  "homepage": "https://gitee.com/the_period_of_the_ten_kingdoms",
43
44
  "repository": {
44
45
  "type": "git",
45
- "url": "https://gitee.com/the_period_of_the_ten_kingdoms/easyui"
46
+ "url": "https://gitee.com/the_period_of_the_ten_kingdoms/aks-dev/tree/master/easyui"
46
47
  },
47
48
  "author": "shiguo",
48
49
  "license": "MIT",
@@ -1,25 +0,0 @@
1
-
2
- Pod::Spec.new do |s|
3
- s.name = "RNEasyui"
4
- s.version = "1.0.6"
5
- s.summary = "RNEasyui"
6
- s.description = <<-DESC
7
- RNEasyui
8
- DESC
9
- s.homepage = "https://gitee.com/the_period_of_the_ten_kingdoms/aks-easy"
10
- s.license = "MIT"
11
- # s.license = { :type => "MIT", :file => "FILE_LICENSE" }
12
- s.author = { "author" => "author@domain.cn" }
13
- s.platform = :ios, "11.0"
14
- s.source = { :git => "https://gitee.com/the_period_of_the_ten_kingdoms/aks-easyui.git", :tag => "master" }
15
- s.source_files = "**/*.{h,m,swift,xib,c}"
16
- s.requires_arc = true
17
- s.resource_bundles = { 'RNEasyui' => ['assets/*'] }
18
-
19
-
20
- s.dependency "React"
21
- #s.dependency "others"
22
-
23
- end
24
-
25
-