flash-notifications 0.0.28 → 0.0.30
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/.eslintrc.js +2 -1
- package/build/events.js +1 -1
- package/build/events.js.map +1 -1
- package/package.json +3 -2
- package/src/events.js +1 -1
- package/tsconfig.json +2 -1
package/.eslintrc.js
CHANGED
package/build/events.js
CHANGED
package/build/events.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.js","sourceRoot":"/src/","sources":["events.js"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,
|
|
1
|
+
{"version":3,"file":"events.js","sourceRoot":"/src/","sources":["events.js"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAA;AAE1C,IAAI,CAAC,UAAU,CAAC,wBAAwB,EAAE,CAAC;IACzC,UAAU,CAAC,wBAAwB,GAAG,IAAI,YAAY,EAAE,CAAA;AAC1D,CAAC;AAED,eAAe,UAAU,CAAC,wBAAwB,CAAA","sourcesContent":["import {EventEmitter} from \"eventemitter3\"\n\nif (!globalThis.flashNotificationsEvents) {\n globalThis.flashNotificationsEvents = new EventEmitter()\n}\n\nexport default globalThis.flashNotificationsEvents\n"]}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flash-notifications",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"description": "My new module",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "expo-module build",
|
|
9
9
|
"clean": "expo-module clean",
|
|
10
|
-
"lint": "expo-module lint",
|
|
10
|
+
"lint": "expo-module lint -- --max-warnings 0",
|
|
11
11
|
"test": "jest --detectOpenHandles",
|
|
12
12
|
"test-expo": "expo-module test",
|
|
13
13
|
"prepare": "expo-module prepare",
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
"classnames": "^2.5.1",
|
|
40
40
|
"diggerize": "^1.0.9",
|
|
41
41
|
"env-sense": "^1.0.1",
|
|
42
|
+
"eventemitter3": "^5.0.1",
|
|
42
43
|
"fetching-object": "^1.0.3",
|
|
43
44
|
"prop-types-exact": "*",
|
|
44
45
|
"set-state-compare": "^1.0.61"
|
package/src/events.js
CHANGED