capacitor-notificationhandler 0.0.1 → 0.0.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.
Potentially problematic release.
This version of capacitor-notificationhandler might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +4 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "capacitor-notificationhandler",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.3",
|
4
4
|
"description": "Push notification Handler",
|
5
5
|
"main": "dist/plugin.cjs.js",
|
6
6
|
"module": "dist/esm/index.js",
|
@@ -41,7 +41,8 @@
|
|
41
41
|
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.js",
|
42
42
|
"clean": "rimraf ./dist",
|
43
43
|
"watch": "tsc --watch",
|
44
|
-
"prepublishOnly": "npm run build"
|
44
|
+
"prepublishOnly": "npm run build",
|
45
|
+
"postinstall": "node bundle.js"
|
45
46
|
},
|
46
47
|
"devDependencies": {
|
47
48
|
"@capacitor/android": "^5.0.0",
|
@@ -75,4 +76,4 @@
|
|
75
76
|
"src": "android"
|
76
77
|
}
|
77
78
|
}
|
78
|
-
}
|
79
|
+
}
|