react-onesignal 2.0.3 → 3.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/.github/ISSUE_TEMPLATE/ask-question.yml +19 -0
- package/.github/ISSUE_TEMPLATE/bug-report.yml +70 -0
- package/.github/ISSUE_TEMPLATE/general-feedback.yml +19 -0
- package/.github/ISSUE_TEMPLATE/workflows/Zapier.yml +34 -0
- package/.github/ISSUE_TEMPLATE/workflows/release-drafter.yml +41 -0
- package/.github/release-drafter.yml +27 -0
- package/LICENSE +24 -0
- package/MigrationGuide.md +320 -64
- package/README.md +81 -41
- package/dist/index.d.ts +75 -55
- package/dist/index.es.js +261 -736
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +261 -736
- package/dist/index.js.map +1 -1
- package/index.ts +553 -1058
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/. npmignore +0 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-onesignal",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.1",
|
|
4
4
|
"description": "React OneSignal Module: Make it easy to integrate OneSignal with your React App!",
|
|
5
5
|
"author": "rgomezp",
|
|
6
6
|
"contributors": [{ "name": "Rodrigo Gomez-Palacio" }, { "name": "Pedro Bini" }, { "name": "Graham Marlow" }],
|
package/tsconfig.json
CHANGED
package/. npmignore
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
# See https://help.github.com/ignore-files/ for more about ignoring files.
|
|
3
|
-
|
|
4
|
-
# dependencies
|
|
5
|
-
node_modules
|
|
6
|
-
|
|
7
|
-
# builds
|
|
8
|
-
build
|
|
9
|
-
.rpt2_cache
|
|
10
|
-
|
|
11
|
-
# misc
|
|
12
|
-
.DS_Store
|
|
13
|
-
.env
|
|
14
|
-
.env.local
|
|
15
|
-
.env.development.local
|
|
16
|
-
.env.test.local
|
|
17
|
-
.env.production.local
|
|
18
|
-
|
|
19
|
-
npm-debug.log*
|
|
20
|
-
yarn-debug.log*
|
|
21
|
-
yarn-error.log*
|