@elizaos/capacitor-location 1.0.0 → 2.0.0-beta.1
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/android/build.gradle +1 -1
- package/package.json +9 -8
package/android/build.gradle
CHANGED
|
@@ -29,7 +29,7 @@ android {
|
|
|
29
29
|
repositories {
|
|
30
30
|
google()
|
|
31
31
|
maven {
|
|
32
|
-
url = uri(rootProject.ext.mavenCentralMirrorUrl)
|
|
32
|
+
url = uri(rootProject.ext.has('mavenCentralMirrorUrl') ? rootProject.ext.mavenCentralMirrorUrl : 'https://repo.maven.apache.org/maven2')
|
|
33
33
|
}
|
|
34
34
|
mavenCentral()
|
|
35
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/capacitor-location",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.1",
|
|
4
4
|
"description": "Reads current location, watches movement, and manages geolocation permissions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"location",
|
|
@@ -25,19 +25,20 @@
|
|
|
25
25
|
"android/build.gradle",
|
|
26
26
|
"dist/",
|
|
27
27
|
"ios/Sources/",
|
|
28
|
-
"*.podspec"
|
|
28
|
+
"*.podspec",
|
|
29
|
+
"dist"
|
|
29
30
|
],
|
|
30
31
|
"scripts": {
|
|
31
|
-
"build": "
|
|
32
|
-
"build:docs": "
|
|
33
|
-
"clean": "
|
|
34
|
-
"prepublishOnly": "
|
|
32
|
+
"build": "bun run clean && tsc && bun --bun rollup -c rollup.config.mjs",
|
|
33
|
+
"build:docs": "bun run clean && bun run docgen && tsc && bun --bun rollup -c rollup.config.mjs",
|
|
34
|
+
"clean": "node ../../../scripts/rm-path-recursive.mjs dist",
|
|
35
|
+
"prepublishOnly": "bun run build",
|
|
35
36
|
"docgen": "docgen --api LocationPlugin --output-readme README.md --output-json dist/docs.json"
|
|
36
37
|
},
|
|
37
38
|
"author": "elizaOS",
|
|
38
39
|
"license": "MIT",
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"@elizaos/app-core": "2.0.0-
|
|
41
|
+
"@elizaos/app-core": "2.0.0-beta.1"
|
|
41
42
|
},
|
|
42
43
|
"repository": {
|
|
43
44
|
"type": "git",
|
|
@@ -59,7 +60,7 @@
|
|
|
59
60
|
"@capacitor/docgen": "^0.3.0",
|
|
60
61
|
"rimraf": "^6.0.0",
|
|
61
62
|
"rollup": "^4.60.2",
|
|
62
|
-
"typescript": "^6.0.
|
|
63
|
+
"typescript": "^6.0.3"
|
|
63
64
|
},
|
|
64
65
|
"peerDependencies": {
|
|
65
66
|
"@capacitor/core": "^8.3.1"
|