@adobe/react-native-aepmessaging 1.0.0-alpha.1 → 1.0.0-beta.2
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/.babelrc +2 -2
- package/LICENSE +1 -1
- package/README.md +25 -8
- package/android/build.gradle +1 -2
- package/android/src/main/java/com/adobe/marketing/mobile/reactnative/messaging/RCTAEPMessagingModule.java +1 -1
- package/android/src/main/java/com/adobe/marketing/mobile/reactnative/messaging/RCTAEPMessagingPackage.java +1 -1
- package/ios/src/RCTAEPMessaging.h +1 -1
- package/ios/src/RCTAEPMessaging.m +1 -1
- package/js/Messaging.d.ts +5 -0
- package/js/Messaging.js +26 -0
- package/js/Messaging.js.map +1 -0
- package/js/index.d.ts +2 -15
- package/js/index.js +8 -13
- package/js/index.js.map +1 -0
- package/package.json +7 -8
- package/{js/AEPMessaging.js → ts/Messaging.ts} +11 -8
- package/ts/index.ts +15 -0
- package/tsconfig.json +9 -0
- package/.flowconfig +0 -70
- package/flow-typed/npm/babel-cli_vx.x.x.js +0 -108
- package/flow-typed/npm/babel-eslint_vx.x.x.js +0 -123
- package/flow-typed/npm/babel-plugin-module-resolver_vx.x.x.js +0 -81
- package/flow-typed/npm/babel-preset-flow_vx.x.x.js +0 -32
- package/flow-typed/npm/babel-preset-react-native_vx.x.x.js +0 -80
- package/flow-typed/npm/eslint-config-airbnb_vx.x.x.js +0 -73
- package/flow-typed/npm/eslint-config-prettier_vx.x.x.js +0 -66
- package/flow-typed/npm/eslint-import-resolver-babel-module_vx.x.x.js +0 -32
- package/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js +0 -424
- package/flow-typed/npm/eslint-plugin-import_vx.x.x.js +0 -410
- package/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js +0 -1194
- package/flow-typed/npm/eslint-plugin-react-native_vx.x.x.js +0 -94
- package/flow-typed/npm/eslint-plugin-react_vx.x.x.js +0 -696
- package/flow-typed/npm/eslint_vx.x.x.js +0 -2398
- package/flow-typed/npm/flow-bin_v0.x.x.js +0 -6
- package/flow-typed/npm/flow-typed_vx.x.x.js +0 -193
- package/flow-typed/npm/react-native_vx.x.x.js +0 -4288
- package/flow-typed/npm-custom/react-native.js +0 -3
package/.babelrc
CHANGED
package/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@ file or class name and description of purpose be included on the
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2022 Adobe
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
# React Native
|
|
2
|
+
# React Native Adobe Experience Platform Messaging Extension
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/@adobe/react-native-aepmessaging)
|
|
5
5
|
[](https://www.npmjs.com/package/@adobe/react-native-aepmessaging)
|
|
6
6
|
|
|
7
|
-
`@adobe/react-native-aepmessaging` is a wrapper around the iOS and Android [
|
|
7
|
+
`@adobe/react-native-aepmessaging` is a wrapper around the iOS and Android [Adobe Journey Optimizer Messaging](https://aep-sdks.gitbook.io/docs/using-mobile-extensions/adobe-journey-optimizer) to allow for integration with React Native applications.
|
|
8
8
|
|
|
9
9
|
## Prerequisites
|
|
10
10
|
|
|
@@ -15,14 +15,23 @@ The messaging extension has the following peer dependenices, which must be insta
|
|
|
15
15
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
|
-
See [Requirements and Installation](https://github.com/adobe/aepsdk-react-native
|
|
18
|
+
See [Requirements and Installation](https://github.com/adobe/aepsdk-react-native#requirements) instructions on the main page
|
|
19
|
+
|
|
20
|
+
Install the `@adobe/react-native-aepmessaging` package:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
cd MyReactApp
|
|
24
|
+
npm install @adobe/react-native-aepmessaging
|
|
25
|
+
```
|
|
19
26
|
|
|
20
27
|
## Usage
|
|
21
28
|
|
|
22
29
|
### [Messaging](https://aep-sdks.gitbook.io/docs/using-mobile-extensions/adobe-journey-optimizer)
|
|
23
30
|
|
|
31
|
+
### Installing and registering the extension with the AEP Mobile Core
|
|
32
|
+
|
|
24
33
|
### Initialization
|
|
25
|
-
Initializing the SDK should be done in native code, documentation on how to initialize the SDK can be found [here](https://github.com/adobe/aepsdk-react-native#initializing).
|
|
34
|
+
Initializing the SDK should be done in native code, additional documentation on how to initialize the SDK can be found [here](https://github.com/adobe/aepsdk-react-native#initializing).
|
|
26
35
|
|
|
27
36
|
Example:
|
|
28
37
|
|
|
@@ -32,6 +41,7 @@ iOS
|
|
|
32
41
|
@import AEPLifecycle;
|
|
33
42
|
@import AEPEdge;
|
|
34
43
|
@import AEPEdgeIdentity;
|
|
44
|
+
@import AEPMessaging;
|
|
35
45
|
...
|
|
36
46
|
@implementation AppDelegate
|
|
37
47
|
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
@@ -57,6 +67,7 @@ import com.adobe.marketing.mobile.LoggingMode;
|
|
|
57
67
|
import com.adobe.marketing.mobile.MobileCore;
|
|
58
68
|
import com.adobe.marketing.mobile.Edge;
|
|
59
69
|
import com.adobe.marketing.mobile.edge.identity;
|
|
70
|
+
import com.adobe.marketing.mobile.Messaging;
|
|
60
71
|
|
|
61
72
|
...
|
|
62
73
|
import android.app.Application;
|
|
@@ -69,8 +80,6 @@ public class MainApplication extends Application implements ReactApplication {
|
|
|
69
80
|
...
|
|
70
81
|
MobileCore.setApplication(this);
|
|
71
82
|
MobileCore.setLogLevel(LoggingMode.DEBUG);
|
|
72
|
-
MobileCore.setWrapperType(WrapperType.REACT_NATIVE);
|
|
73
|
-
|
|
74
83
|
try {
|
|
75
84
|
Edge.registerExtension();
|
|
76
85
|
Identity.registerExtension();
|
|
@@ -95,9 +104,17 @@ public class MainApplication extends Application implements ReactApplication {
|
|
|
95
104
|
import {AEPMessaging} from '@adobe/react-native-aepmessaging';
|
|
96
105
|
```
|
|
97
106
|
|
|
98
|
-
|
|
107
|
+
## API reference
|
|
108
|
+
### extensionVersion
|
|
109
|
+
|
|
110
|
+
**Syntax**
|
|
111
|
+
```javascript
|
|
112
|
+
extensionVersion(): Promise<string>;
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
**Example**
|
|
99
116
|
```javascript
|
|
100
|
-
|
|
117
|
+
Messaging.extensionVersion().then(version => console.log("AdobeExperienceSDK: Messaging version: " + version));
|
|
101
118
|
```
|
|
102
119
|
|
|
103
120
|
## Configure Adobe Journey Optimizer
|
package/android/build.gradle
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
3
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
5
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
3
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
5
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
3
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
5
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
3
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
5
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
package/js/Messaging.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
4
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
6
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
|
|
8
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
9
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
10
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
11
|
+
governing permissions and limitations under the License.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
const react_native_1 = require("react-native");
|
|
15
|
+
const RCTAEPMessaging = react_native_1.NativeModules.AEPMessaging;
|
|
16
|
+
const Messaging = {
|
|
17
|
+
/**
|
|
18
|
+
* Returns the version of the AEPMessaging extension
|
|
19
|
+
* @param {string} Promise a promise that resolves with the extension version
|
|
20
|
+
*/
|
|
21
|
+
extensionVersion() {
|
|
22
|
+
return Promise.resolve(RCTAEPMessaging.extensionVersion());
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
exports.default = Messaging;
|
|
26
|
+
//# sourceMappingURL=Messaging.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Messaging.js","sourceRoot":"","sources":["../ts/Messaging.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;EAUE;;AAEF,+CAA6C;AAM7C,MAAM,eAAe,GAAe,4BAAa,CAAC,YAAY,CAAC;AAE/D,MAAM,SAAS,GAAe;IAC5B;;;OAGG;IACH,gBAAgB;QACd,OAAO,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC7D,CAAC;CACF,CAAC;AAEF,kBAAe,SAAS,CAAC"}
|
package/js/index.d.ts
CHANGED
|
@@ -1,15 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
-
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
-
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
-
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
-
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
-
governing permissions and limitations under the License.
|
|
11
|
-
|
|
12
|
-
*/
|
|
13
|
-
export class AEPMessaging {
|
|
14
|
-
static extensionVersion(): Promise<string>;
|
|
15
|
-
};
|
|
1
|
+
import Messaging from './Messaging';
|
|
2
|
+
export { Messaging };
|
package/js/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
/*
|
|
2
|
-
Copyright
|
|
3
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
4
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
5
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
6
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -8,16 +9,10 @@ Unless required by applicable law or agreed to in writing, software distributed
|
|
|
8
9
|
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
10
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
11
|
governing permissions and limitations under the License.
|
|
11
|
-
|
|
12
|
-
@flow
|
|
13
|
-
@format
|
|
14
12
|
*/
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
return require('./AEPMessaging.js');
|
|
22
|
-
},
|
|
23
|
-
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Messaging = void 0;
|
|
15
|
+
const tslib_1 = require("tslib");
|
|
16
|
+
const Messaging_1 = (0, tslib_1.__importDefault)(require("./Messaging"));
|
|
17
|
+
exports.Messaging = Messaging_1.default;
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
package/js/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../ts/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;EAUE;;;;AAEF,yEAAoC;AAE3B,oBAFF,mBAAS,CAEE"}
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/react-native-aepmessaging",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "Adobe Experience Platform support for React Native apps.",
|
|
5
5
|
"homepage": "https://aep-sdks.gitbook.io/docs/",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
|
-
"main": "./
|
|
8
|
-
"types": "./js/index.d.ts",
|
|
7
|
+
"main": "./ts/index.ts",
|
|
9
8
|
"scripts": {
|
|
10
9
|
"cleanup": "rm -rf node_modules",
|
|
11
|
-
"
|
|
10
|
+
"tsc": "tsc"
|
|
12
11
|
},
|
|
13
12
|
"repository": {
|
|
14
13
|
"type": "git",
|
|
@@ -28,13 +27,13 @@
|
|
|
28
27
|
"name": "Adobe Experience Platform SDK Team"
|
|
29
28
|
},
|
|
30
29
|
"peerDependencies": {
|
|
31
|
-
"@adobe/react-native-aepcore": "^1.0.0-
|
|
32
|
-
"@adobe/react-native-aepedge": "^1.0.0-
|
|
33
|
-
"@adobe/react-native-aepedgeidentity": "1.0.0-
|
|
30
|
+
"@adobe/react-native-aepcore": "^1.0.0-beta",
|
|
31
|
+
"@adobe/react-native-aepedge": "^1.0.0-beta",
|
|
32
|
+
"@adobe/react-native-aepedgeidentity": "^1.0.0-beta",
|
|
34
33
|
"react-native": ">=0.60.0"
|
|
35
34
|
},
|
|
36
35
|
"publishConfig": {
|
|
37
36
|
"access": "public"
|
|
38
37
|
},
|
|
39
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "a7d0febed8bcb7c58025bff4daa6a974953f3de4"
|
|
40
39
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
3
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
5
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -8,21 +8,24 @@ Unless required by applicable law or agreed to in writing, software distributed
|
|
|
8
8
|
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
9
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
10
|
governing permissions and limitations under the License.
|
|
11
|
-
|
|
12
|
-
@flow
|
|
13
|
-
@format
|
|
14
11
|
*/
|
|
15
12
|
|
|
16
|
-
|
|
13
|
+
import { NativeModules } from 'react-native';
|
|
14
|
+
|
|
15
|
+
interface IMessaging {
|
|
16
|
+
extensionVersion: () => Promise<string>;
|
|
17
|
+
}
|
|
17
18
|
|
|
18
|
-
const RCTAEPMessaging =
|
|
19
|
+
const RCTAEPMessaging: IMessaging = NativeModules.AEPMessaging;
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
const Messaging: IMessaging = {
|
|
21
22
|
/**
|
|
22
23
|
* Returns the version of the AEPMessaging extension
|
|
23
|
-
* @param {string} Promise a promise that resolves with the extension
|
|
24
|
+
* @param {string} Promise a promise that resolves with the extension version
|
|
24
25
|
*/
|
|
25
26
|
extensionVersion(): Promise<string> {
|
|
26
27
|
return Promise.resolve(RCTAEPMessaging.extensionVersion());
|
|
27
28
|
}
|
|
28
29
|
};
|
|
30
|
+
|
|
31
|
+
export default Messaging;
|
package/ts/index.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2022 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import Messaging from './Messaging';
|
|
14
|
+
|
|
15
|
+
export { Messaging };
|
package/tsconfig.json
ADDED
package/.flowconfig
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
[ignore]
|
|
2
|
-
; We fork some components by platform
|
|
3
|
-
.*/*[.]android.js
|
|
4
|
-
|
|
5
|
-
; Ignore "BUCK" generated dirs
|
|
6
|
-
<PROJECT_ROOT>/\.buckd/
|
|
7
|
-
|
|
8
|
-
; Ignore unexpected extra "@providesModule"
|
|
9
|
-
.*/node_modules/.*/node_modules/fbjs/.*
|
|
10
|
-
|
|
11
|
-
; Ignore templates for 'react-native init'
|
|
12
|
-
<PROJECT_ROOT>/node_modules/react-native/local-cli/.*
|
|
13
|
-
|
|
14
|
-
; Ignore polyfills
|
|
15
|
-
<PROJECT_ROOT>/node_modules/react-native/Libraries/polyfills/.*
|
|
16
|
-
|
|
17
|
-
; Ignore various node_modules
|
|
18
|
-
<PROJECT_ROOT>/node_modules/metro/.*
|
|
19
|
-
|
|
20
|
-
; Ignore RN jest
|
|
21
|
-
<PROJECT_ROOT>/node_modules/react-native/.*
|
|
22
|
-
|
|
23
|
-
; Ignore Example
|
|
24
|
-
<PROJECT_ROOT>/sample/*
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
[include]
|
|
28
|
-
<PROJECT_ROOT>/node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes
|
|
29
|
-
|
|
30
|
-
[libs]
|
|
31
|
-
node_modules/react-native/Libraries/react-native/react-native-interface.js
|
|
32
|
-
node_modules/react-native/flow
|
|
33
|
-
flow-typed/
|
|
34
|
-
|
|
35
|
-
[options]
|
|
36
|
-
module.system=haste
|
|
37
|
-
|
|
38
|
-
emoji=true
|
|
39
|
-
|
|
40
|
-
munge_underscores=true
|
|
41
|
-
|
|
42
|
-
module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
|
|
43
|
-
|
|
44
|
-
module.system.node.resolve_dirname=node_modules
|
|
45
|
-
module.system.node.resolve_dirname=./src/
|
|
46
|
-
|
|
47
|
-
module.file_ext=.js
|
|
48
|
-
module.file_ext=.jsx
|
|
49
|
-
module.file_ext=.json
|
|
50
|
-
module.file_ext=.native.js
|
|
51
|
-
|
|
52
|
-
suppress_type=$FlowIssue
|
|
53
|
-
suppress_type=$FlowFixMe
|
|
54
|
-
suppress_type=$FixMe
|
|
55
|
-
|
|
56
|
-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
|
|
57
|
-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
|
|
58
|
-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
|
|
59
|
-
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
|
|
60
|
-
|
|
61
|
-
esproposal.decorators=ignore
|
|
62
|
-
|
|
63
|
-
module.name_mapper.extension='png' -> 'emptyObject'
|
|
64
|
-
module.name_mapper='^react-navigation$' -> 'emptyObject'
|
|
65
|
-
|
|
66
|
-
; https://github.com/facebook/react-native/issues/14927
|
|
67
|
-
module.name_mapper='^./link/link$' -> 'emptyObject'
|
|
68
|
-
|
|
69
|
-
[version]
|
|
70
|
-
0.92.0
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
// flow-typed signature: dbbf97fda4b804bb1bd1a12afdb8bf31
|
|
2
|
-
// flow-typed version: <<STUB>>/babel-cli_v^6.26.0/flow_v0.92.0
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* This is an autogenerated libdef stub for:
|
|
6
|
-
*
|
|
7
|
-
* 'babel-cli'
|
|
8
|
-
*
|
|
9
|
-
* Fill this stub out by replacing all the `any` types.
|
|
10
|
-
*
|
|
11
|
-
* Once filled out, we encourage you to share your work with the
|
|
12
|
-
* community by sending a pull request to:
|
|
13
|
-
* https://github.com/flowtype/flow-typed
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
declare module 'babel-cli' {
|
|
17
|
-
declare module.exports: any;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* We include stubs for each file inside this npm package in case you need to
|
|
22
|
-
* require those files directly. Feel free to delete any files that aren't
|
|
23
|
-
* needed.
|
|
24
|
-
*/
|
|
25
|
-
declare module 'babel-cli/bin/babel-doctor' {
|
|
26
|
-
declare module.exports: any;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
declare module 'babel-cli/bin/babel-external-helpers' {
|
|
30
|
-
declare module.exports: any;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
declare module 'babel-cli/bin/babel-node' {
|
|
34
|
-
declare module.exports: any;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
declare module 'babel-cli/bin/babel' {
|
|
38
|
-
declare module.exports: any;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
declare module 'babel-cli/lib/_babel-node' {
|
|
42
|
-
declare module.exports: any;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
declare module 'babel-cli/lib/babel-external-helpers' {
|
|
46
|
-
declare module.exports: any;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
declare module 'babel-cli/lib/babel-node' {
|
|
50
|
-
declare module.exports: any;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
declare module 'babel-cli/lib/babel/dir' {
|
|
54
|
-
declare module.exports: any;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
declare module 'babel-cli/lib/babel/file' {
|
|
58
|
-
declare module.exports: any;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
declare module 'babel-cli/lib/babel/index' {
|
|
62
|
-
declare module.exports: any;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
declare module 'babel-cli/lib/babel/util' {
|
|
66
|
-
declare module.exports: any;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// Filename aliases
|
|
70
|
-
declare module 'babel-cli/bin/babel-doctor.js' {
|
|
71
|
-
declare module.exports: $Exports<'babel-cli/bin/babel-doctor'>;
|
|
72
|
-
}
|
|
73
|
-
declare module 'babel-cli/bin/babel-external-helpers.js' {
|
|
74
|
-
declare module.exports: $Exports<'babel-cli/bin/babel-external-helpers'>;
|
|
75
|
-
}
|
|
76
|
-
declare module 'babel-cli/bin/babel-node.js' {
|
|
77
|
-
declare module.exports: $Exports<'babel-cli/bin/babel-node'>;
|
|
78
|
-
}
|
|
79
|
-
declare module 'babel-cli/bin/babel.js' {
|
|
80
|
-
declare module.exports: $Exports<'babel-cli/bin/babel'>;
|
|
81
|
-
}
|
|
82
|
-
declare module 'babel-cli/index' {
|
|
83
|
-
declare module.exports: $Exports<'babel-cli'>;
|
|
84
|
-
}
|
|
85
|
-
declare module 'babel-cli/index.js' {
|
|
86
|
-
declare module.exports: $Exports<'babel-cli'>;
|
|
87
|
-
}
|
|
88
|
-
declare module 'babel-cli/lib/_babel-node.js' {
|
|
89
|
-
declare module.exports: $Exports<'babel-cli/lib/_babel-node'>;
|
|
90
|
-
}
|
|
91
|
-
declare module 'babel-cli/lib/babel-external-helpers.js' {
|
|
92
|
-
declare module.exports: $Exports<'babel-cli/lib/babel-external-helpers'>;
|
|
93
|
-
}
|
|
94
|
-
declare module 'babel-cli/lib/babel-node.js' {
|
|
95
|
-
declare module.exports: $Exports<'babel-cli/lib/babel-node'>;
|
|
96
|
-
}
|
|
97
|
-
declare module 'babel-cli/lib/babel/dir.js' {
|
|
98
|
-
declare module.exports: $Exports<'babel-cli/lib/babel/dir'>;
|
|
99
|
-
}
|
|
100
|
-
declare module 'babel-cli/lib/babel/file.js' {
|
|
101
|
-
declare module.exports: $Exports<'babel-cli/lib/babel/file'>;
|
|
102
|
-
}
|
|
103
|
-
declare module 'babel-cli/lib/babel/index.js' {
|
|
104
|
-
declare module.exports: $Exports<'babel-cli/lib/babel/index'>;
|
|
105
|
-
}
|
|
106
|
-
declare module 'babel-cli/lib/babel/util.js' {
|
|
107
|
-
declare module.exports: $Exports<'babel-cli/lib/babel/util'>;
|
|
108
|
-
}
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
// flow-typed signature: 7265767162488d59e86e4e15ca132f34
|
|
2
|
-
// flow-typed version: <<STUB>>/babel-eslint_v^8.2.2/flow_v0.92.0
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* This is an autogenerated libdef stub for:
|
|
6
|
-
*
|
|
7
|
-
* 'babel-eslint'
|
|
8
|
-
*
|
|
9
|
-
* Fill this stub out by replacing all the `any` types.
|
|
10
|
-
*
|
|
11
|
-
* Once filled out, we encourage you to share your work with the
|
|
12
|
-
* community by sending a pull request to:
|
|
13
|
-
* https://github.com/flowtype/flow-typed
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
declare module 'babel-eslint' {
|
|
17
|
-
declare module.exports: any;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* We include stubs for each file inside this npm package in case you need to
|
|
22
|
-
* require those files directly. Feel free to delete any files that aren't
|
|
23
|
-
* needed.
|
|
24
|
-
*/
|
|
25
|
-
declare module 'babel-eslint/lib/analyze-scope' {
|
|
26
|
-
declare module.exports: any;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
declare module 'babel-eslint/lib/babylon-to-espree/attachComments' {
|
|
30
|
-
declare module.exports: any;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
declare module 'babel-eslint/lib/babylon-to-espree/convertComments' {
|
|
34
|
-
declare module.exports: any;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType' {
|
|
38
|
-
declare module.exports: any;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
declare module 'babel-eslint/lib/babylon-to-espree/index' {
|
|
42
|
-
declare module.exports: any;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
declare module 'babel-eslint/lib/babylon-to-espree/toAST' {
|
|
46
|
-
declare module.exports: any;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
declare module 'babel-eslint/lib/babylon-to-espree/toToken' {
|
|
50
|
-
declare module.exports: any;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
declare module 'babel-eslint/lib/babylon-to-espree/toTokens' {
|
|
54
|
-
declare module.exports: any;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
declare module 'babel-eslint/lib/index' {
|
|
58
|
-
declare module.exports: any;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
declare module 'babel-eslint/lib/parse-with-patch' {
|
|
62
|
-
declare module.exports: any;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
declare module 'babel-eslint/lib/parse-with-scope' {
|
|
66
|
-
declare module.exports: any;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
declare module 'babel-eslint/lib/parse' {
|
|
70
|
-
declare module.exports: any;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
declare module 'babel-eslint/lib/patch-eslint-scope' {
|
|
74
|
-
declare module.exports: any;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
declare module 'babel-eslint/lib/visitor-keys' {
|
|
78
|
-
declare module.exports: any;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
// Filename aliases
|
|
82
|
-
declare module 'babel-eslint/lib/analyze-scope.js' {
|
|
83
|
-
declare module.exports: $Exports<'babel-eslint/lib/analyze-scope'>;
|
|
84
|
-
}
|
|
85
|
-
declare module 'babel-eslint/lib/babylon-to-espree/attachComments.js' {
|
|
86
|
-
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/attachComments'>;
|
|
87
|
-
}
|
|
88
|
-
declare module 'babel-eslint/lib/babylon-to-espree/convertComments.js' {
|
|
89
|
-
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertComments'>;
|
|
90
|
-
}
|
|
91
|
-
declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType.js' {
|
|
92
|
-
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertTemplateType'>;
|
|
93
|
-
}
|
|
94
|
-
declare module 'babel-eslint/lib/babylon-to-espree/index.js' {
|
|
95
|
-
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/index'>;
|
|
96
|
-
}
|
|
97
|
-
declare module 'babel-eslint/lib/babylon-to-espree/toAST.js' {
|
|
98
|
-
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toAST'>;
|
|
99
|
-
}
|
|
100
|
-
declare module 'babel-eslint/lib/babylon-to-espree/toToken.js' {
|
|
101
|
-
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toToken'>;
|
|
102
|
-
}
|
|
103
|
-
declare module 'babel-eslint/lib/babylon-to-espree/toTokens.js' {
|
|
104
|
-
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toTokens'>;
|
|
105
|
-
}
|
|
106
|
-
declare module 'babel-eslint/lib/index.js' {
|
|
107
|
-
declare module.exports: $Exports<'babel-eslint/lib/index'>;
|
|
108
|
-
}
|
|
109
|
-
declare module 'babel-eslint/lib/parse-with-patch.js' {
|
|
110
|
-
declare module.exports: $Exports<'babel-eslint/lib/parse-with-patch'>;
|
|
111
|
-
}
|
|
112
|
-
declare module 'babel-eslint/lib/parse-with-scope.js' {
|
|
113
|
-
declare module.exports: $Exports<'babel-eslint/lib/parse-with-scope'>;
|
|
114
|
-
}
|
|
115
|
-
declare module 'babel-eslint/lib/parse.js' {
|
|
116
|
-
declare module.exports: $Exports<'babel-eslint/lib/parse'>;
|
|
117
|
-
}
|
|
118
|
-
declare module 'babel-eslint/lib/patch-eslint-scope.js' {
|
|
119
|
-
declare module.exports: $Exports<'babel-eslint/lib/patch-eslint-scope'>;
|
|
120
|
-
}
|
|
121
|
-
declare module 'babel-eslint/lib/visitor-keys.js' {
|
|
122
|
-
declare module.exports: $Exports<'babel-eslint/lib/visitor-keys'>;
|
|
123
|
-
}
|