@capacitor/device 1.0.2 → 1.0.6

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/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.6](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/device@1.0.5...@capacitor/device@1.0.6) (2021-11-03)
7
+
8
+ **Note:** Version bump only for package @capacitor/device
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.0.5](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/device@1.0.4...@capacitor/device@1.0.5) (2021-10-14)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * remove postpublish scripts ([#656](https://github.com/ionic-team/capacitor-plugins/issues/656)) ([ed6ac49](https://github.com/ionic-team/capacitor-plugins/commit/ed6ac499ebf4a47525071ccbfc36c27503e11f60))
20
+
21
+
22
+
23
+
24
+
25
+ ## [1.0.4](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/device@1.0.3...@capacitor/device@1.0.4) (2021-10-13)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * correct addListeners links ([#655](https://github.com/ionic-team/capacitor-plugins/issues/655)) ([f9871e7](https://github.com/ionic-team/capacitor-plugins/commit/f9871e7bd53478addb21155e148829f550c0e457))
31
+
32
+
33
+
34
+
35
+
36
+ ## [1.0.3](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/device@1.0.2...@capacitor/device@1.0.3) (2021-09-01)
37
+
38
+ **Note:** Version bump only for package @capacitor/device
39
+
40
+
41
+
42
+
43
+
6
44
  ## [1.0.2](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/device@1.0.1...@capacitor/device@1.0.2) (2021-06-23)
7
45
 
8
46
  **Note:** Version bump only for package @capacitor/device
@@ -7,10 +7,10 @@ Pod::Spec.new do |s|
7
7
  s.version = package['version']
8
8
  s.summary = package['description']
9
9
  s.license = package['license']
10
- s.homepage = package['repository']['url']
10
+ s.homepage = 'https://capacitorjs.com'
11
11
  s.author = package['author']
12
- s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
13
- s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
12
+ s.source = { :git => 'https://github.com/ionic-team/capacitor-plugins.git', :tag => package['name'] + '@' + package['version'] }
13
+ s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}', 'device/ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
14
14
  s.ios.deployment_target = '12.0'
15
15
  s.dependency 'Capacitor'
16
16
  s.swift_version = '5.1'
package/dist/plugin.js CHANGED
@@ -179,5 +179,5 @@ var capacitorDevice = (function (exports, core) {
179
179
 
180
180
  return exports;
181
181
 
182
- }({}, capacitorExports));
182
+ })({}, capacitorExports);
183
183
  //# sourceMappingURL=plugin.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/device",
3
- "version": "1.0.2",
3
+ "version": "1.0.6",
4
4
  "description": "The Device API exposes internal information about the device, such as the model and operating system version, along with user information such as unique ids.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -34,7 +34,7 @@
34
34
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
35
35
  "verify:web": "npm run build && npm test",
36
36
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
37
- "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- autocorrect --format",
37
+ "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
38
38
  "eslint": "eslint . --ext ts",
39
39
  "prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
40
40
  "swiftlint": "node-swiftlint",
@@ -42,12 +42,13 @@
42
42
  "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.js",
43
43
  "clean": "rimraf ./dist",
44
44
  "watch": "tsc --watch",
45
- "prepublishOnly": "npm run build"
45
+ "prepublishOnly": "npm run build",
46
+ "publish:cocoapod": "pod trunk push ./CapacitorDevice.podspec --allow-warnings"
46
47
  },
47
48
  "devDependencies": {
48
49
  "@capacitor/android": "^3.0.0",
49
50
  "@capacitor/core": "^3.0.0",
50
- "@capacitor/docgen": "0.0.17",
51
+ "@capacitor/docgen": "0.0.18",
51
52
  "@capacitor/ios": "^3.0.0",
52
53
  "@ionic/eslint-config": "^0.3.0",
53
54
  "@ionic/prettier-config": "~1.0.1",
@@ -82,5 +83,5 @@
82
83
  "publishConfig": {
83
84
  "access": "public"
84
85
  },
85
- "gitHead": "8b20a24ada3d3f96944aaa7023c4409c2bdb12c5"
86
+ "gitHead": "64df93225736e9dfad336562f5e53e5a2243052b"
86
87
  }