@srcpush/react-native-code-push 1.0.3-develop.4 → 1.0.3-develop.6
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/LICENSE.md +2 -2
- package/SECURITY.md +1 -1
- package/android/build.gradle +13 -19
- package/package.json +1 -1
- package/tsconfig.json +4 -2
- package/tslint.json +21 -13
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@ Microsoft CodePush Plugin for React Native
|
|
|
2
2
|
|
|
3
3
|
Copyright (c) Microsoft Corporation
|
|
4
4
|
|
|
5
|
-
All rights reserved.
|
|
5
|
+
All rights reserved.
|
|
6
6
|
|
|
7
7
|
MIT License
|
|
8
8
|
|
|
@@ -10,4 +10,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
10
10
|
|
|
11
11
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12
12
|
|
|
13
|
-
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/SECURITY.md
CHANGED
|
@@ -22,4 +22,4 @@ Please include the requested information listed below (as much as you can provid
|
|
|
22
22
|
* Proof-of-concept or exploit code (if possible)
|
|
23
23
|
* Impact of the issue, including how an attacker might exploit the issue
|
|
24
24
|
|
|
25
|
-
This information will help us triage your report more quickly.
|
|
25
|
+
This information will help us triage your report more quickly.
|
package/android/build.gradle
CHANGED
|
@@ -1,24 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
mavenCentral()
|
|
7
|
-
}
|
|
8
|
-
dependencies {
|
|
9
|
-
classpath 'com.android.tools.build:gradle:1.3.0'
|
|
3
|
+
android {
|
|
4
|
+
namespace "com.microsoft.codepush.react"
|
|
5
|
+
compileSdkVersion 33
|
|
10
6
|
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
defaultConfig {
|
|
8
|
+
minSdkVersion 21
|
|
9
|
+
targetSdkVersion 33
|
|
10
|
+
versionCode 1
|
|
11
|
+
versionName "1.0"
|
|
13
12
|
}
|
|
14
13
|
}
|
|
15
14
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
repositories {
|
|
21
|
-
mavenLocal()
|
|
22
|
-
mavenCentral()
|
|
23
|
-
}
|
|
24
|
-
}
|
|
15
|
+
repositories {
|
|
16
|
+
mavenLocal()
|
|
17
|
+
mavenCentral()
|
|
18
|
+
}
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"target": "ES5",
|
|
4
4
|
"module": "commonjs",
|
|
5
|
-
"lib": [
|
|
5
|
+
"lib": [
|
|
6
|
+
"es6"
|
|
7
|
+
],
|
|
6
8
|
"noImplicitAny": true,
|
|
7
9
|
"noEmitOnError": true,
|
|
8
10
|
"moduleResolution": "node",
|
|
@@ -14,4 +16,4 @@
|
|
|
14
16
|
"exclude": [
|
|
15
17
|
"Examples"
|
|
16
18
|
]
|
|
17
|
-
}
|
|
19
|
+
}
|
package/tslint.json
CHANGED
|
@@ -2,31 +2,39 @@
|
|
|
2
2
|
"defaultSeverity": "error",
|
|
3
3
|
"rules": {
|
|
4
4
|
"class-name": true,
|
|
5
|
-
"comment-format": [
|
|
5
|
+
"comment-format": [
|
|
6
|
+
true,
|
|
6
7
|
"check-space"
|
|
7
8
|
],
|
|
8
|
-
"indent": [
|
|
9
|
+
"indent": [
|
|
10
|
+
true,
|
|
9
11
|
"spaces"
|
|
10
12
|
],
|
|
11
|
-
"one-line": [
|
|
13
|
+
"one-line": [
|
|
14
|
+
true,
|
|
12
15
|
"check-open-brace"
|
|
13
16
|
],
|
|
14
|
-
"quotemark": [
|
|
17
|
+
"quotemark": [
|
|
18
|
+
true,
|
|
15
19
|
"double"
|
|
16
20
|
],
|
|
17
21
|
"semicolon": true,
|
|
18
|
-
"whitespace": [
|
|
22
|
+
"whitespace": [
|
|
23
|
+
true,
|
|
19
24
|
"check-branch",
|
|
20
25
|
"check-operator",
|
|
21
26
|
"check-separator",
|
|
22
27
|
"check-type"
|
|
23
28
|
],
|
|
24
|
-
"typedef-whitespace": [
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
"typedef-whitespace": [
|
|
30
|
+
true,
|
|
31
|
+
{
|
|
32
|
+
"call-signature": "nospace",
|
|
33
|
+
"index-signature": "nospace",
|
|
34
|
+
"parameter": "nospace",
|
|
35
|
+
"property-declaration": "nospace",
|
|
36
|
+
"variable-declaration": "nospace"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
31
39
|
}
|
|
32
|
-
}
|
|
40
|
+
}
|