@elizaos/capacitor-appblocker 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.
@@ -34,7 +34,7 @@ android {
34
34
  repositories {
35
35
  google()
36
36
  maven {
37
- url = uri(rootProject.ext.mavenCentralMirrorUrl)
37
+ url = uri(rootProject.ext.has('mavenCentralMirrorUrl') ? rootProject.ext.mavenCentralMirrorUrl : 'https://repo.maven.apache.org/maven2')
38
38
  }
39
39
  mavenCentral()
40
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/capacitor-appblocker",
3
- "version": "1.0.0",
3
+ "version": "2.0.0-beta.1",
4
4
  "description": "Blocks selected apps on Android with Usage Access and an overlay shield, and on iPhone with Family Controls.",
5
5
  "keywords": [
6
6
  "app-blocker",
@@ -25,12 +25,13 @@
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": "npm run clean && tsc && rollup -c rollup.config.mjs",
32
- "clean": "rimraf ./dist",
33
- "prepublishOnly": "npm run build"
32
+ "build": "bun run clean && tsc && bun --bun rollup -c rollup.config.mjs",
33
+ "clean": "node ../../../scripts/rm-path-recursive.mjs dist",
34
+ "prepublishOnly": "bun run build"
34
35
  },
35
36
  "author": "elizaOS",
36
37
  "license": "MIT",
@@ -53,7 +54,7 @@
53
54
  "@capacitor/core": "^8.3.1",
54
55
  "rimraf": "^6.0.0",
55
56
  "rollup": "^4.60.2",
56
- "typescript": "^6.0.0"
57
+ "typescript": "^6.0.3"
57
58
  },
58
59
  "peerDependencies": {
59
60
  "@capacitor/core": "^8.3.1"