@appzung/react-native-code-push 8.3.2 → 8.3.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.
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appzung/react-native-code-push",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.3",
|
|
4
4
|
"description": "React Native plugin for the CodePush service",
|
|
5
5
|
"main": "CodePush.js",
|
|
6
6
|
"typings": "typings/react-native-code-push.d.ts",
|
|
7
7
|
"author": "Louis Lagrange <lagrange.louis@gmail.com> (https://github.com/Minishlink)",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"homepage": "https://appzung.com",
|
|
9
10
|
"scripts": {
|
|
10
11
|
"clean": "shx rm -rf bin",
|
|
11
12
|
"setup": "npm install --quiet --no-progress",
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
trigger:
|
|
2
|
-
- master
|
|
3
|
-
|
|
4
|
-
pr:
|
|
5
|
-
- master
|
|
6
|
-
|
|
7
|
-
resources:
|
|
8
|
-
repositories:
|
|
9
|
-
- repository: 1ESPipelineTemplates
|
|
10
|
-
type: git
|
|
11
|
-
name: 1ESPipelineTemplates/1ESPipelineTemplates
|
|
12
|
-
ref: refs/tags/release
|
|
13
|
-
name: $(Build.SourceBranchName)_$(date:yyyyMMdd)$(rev:.r)
|
|
14
|
-
|
|
15
|
-
extends:
|
|
16
|
-
${{ if eq(variables['Build.SourceBranch'], 'refs/heads/master') }}:
|
|
17
|
-
template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
|
|
18
|
-
${{ else }}:
|
|
19
|
-
template: v1/1ES.Unofficial.PipelineTemplate.yml@1ESPipelineTemplates
|
|
20
|
-
parameters:
|
|
21
|
-
pool:
|
|
22
|
-
name: 1ES-PT-CBL-Mariner-2.0-Gen2
|
|
23
|
-
os: linux
|
|
24
|
-
customBuildTags:
|
|
25
|
-
- ES365AIMigrationTooling-BulkMigrated
|
|
26
|
-
sdl:
|
|
27
|
-
sourceAnalysisPool: 1ES-PT-Windows-2022
|
|
28
|
-
credscan:
|
|
29
|
-
suppressionsFile: $(Build.SourcesDirectory)/.config/CredScanSuppressions.json
|
|
30
|
-
stages:
|
|
31
|
-
- stage: Stage
|
|
32
|
-
jobs:
|
|
33
|
-
- job: HostJob
|
|
34
|
-
templateContext:
|
|
35
|
-
outputs:
|
|
36
|
-
- output: pipelineArtifact
|
|
37
|
-
displayName: "Publish Artifact: artifacts"
|
|
38
|
-
path: '$(Build.ArtifactStagingDirectory)/npm'
|
|
39
|
-
artifactName: npm
|
|
40
|
-
|
|
41
|
-
steps:
|
|
42
|
-
- task: NodeTool@0
|
|
43
|
-
inputs:
|
|
44
|
-
versionSpec: '14.x'
|
|
45
|
-
displayName: 'Install Node.js'
|
|
46
|
-
|
|
47
|
-
- script: |
|
|
48
|
-
npm pack
|
|
49
|
-
npm install -g react-native-code-push*.tgz
|
|
50
|
-
displayName: 'Package react-native-code-push'
|
|
51
|
-
workingDirectory: $(Build.SourcesDirectory)
|
|
52
|
-
|
|
53
|
-
- task: DeleteFiles@1
|
|
54
|
-
inputs:
|
|
55
|
-
contents: node_modules
|
|
56
|
-
displayName: 'Delete node_modules'
|
|
57
|
-
|
|
58
|
-
- task: ArchiveFiles@2
|
|
59
|
-
inputs:
|
|
60
|
-
rootFolderOrFile: '$(Build.SourcesDirectory)'
|
|
61
|
-
includeRootFolder: false
|
|
62
|
-
archiveType: 'tar'
|
|
63
|
-
archiveFile: '$(Build.ArtifactStagingDirectory)/npm/$(Build.BuildId).tgz'
|
|
64
|
-
replaceExistingArchive: true
|
|
65
|
-
verbose: true
|
|
66
|
-
displayName: 'Prepare npm artifact'
|
|
67
|
-
|
|
68
|
-
- stage: APIScan
|
|
69
|
-
dependsOn: Stage
|
|
70
|
-
pool:
|
|
71
|
-
name: 1ES-PT-Windows-2022
|
|
72
|
-
os: windows
|
|
73
|
-
variables:
|
|
74
|
-
"agent.source.skip": true
|
|
75
|
-
jobs:
|
|
76
|
-
- job: APIScan
|
|
77
|
-
steps:
|
|
78
|
-
- task: DownloadPipelineArtifact@2
|
|
79
|
-
displayName: Download Build Artifacts for APIScan
|
|
80
|
-
inputs:
|
|
81
|
-
artifactName: npm
|
|
82
|
-
targetPath: '$(Agent.BuildDirectory)/npm'
|
|
83
|
-
- task: ExtractFiles@1
|
|
84
|
-
inputs:
|
|
85
|
-
archiveFilePatterns: '$(Agent.BuildDirectory)/npm/*.tgz'
|
|
86
|
-
destinationFolder: '$(Agent.BuildDirectory)/npm_extracted'
|
|
87
|
-
- task: AzureKeyVault@2
|
|
88
|
-
inputs:
|
|
89
|
-
azureSubscription: 'AC - Dev Infra & Build Pool'
|
|
90
|
-
KeyVaultName: 'mobile-center-sdk'
|
|
91
|
-
SecretsFilter: 'appcenter-sdk-managed-identity-clientid'
|
|
92
|
-
RunAsPreJob: false
|
|
93
|
-
- task: APIScan@2
|
|
94
|
-
displayName: 'Run APIScan'
|
|
95
|
-
inputs:
|
|
96
|
-
softwareFolder: '$(Agent.BuildDirectory)\npm_extracted'
|
|
97
|
-
softwareName: 'react-native-code-push'
|
|
98
|
-
softwareVersionNum: '$(Build.BuildId)'
|
|
99
|
-
isLargeApp: false
|
|
100
|
-
toolVersion: 'Latest'
|
|
101
|
-
verbosityLevel: verbose
|
|
102
|
-
condition: and(succeeded(), ne(variables['DisableAPIScan'], 'true'))
|
|
103
|
-
env:
|
|
104
|
-
AzureServicesAuthConnectionString: 'runAs=App;AppId=$(appcenter-sdk-managed-identity-clientid)'
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
trigger:
|
|
2
|
-
- master
|
|
3
|
-
|
|
4
|
-
pr:
|
|
5
|
-
- master
|
|
6
|
-
|
|
7
|
-
variables:
|
|
8
|
-
- name: api-level
|
|
9
|
-
value: '27'
|
|
10
|
-
|
|
11
|
-
pool:
|
|
12
|
-
vmImage: 'macOS-12'
|
|
13
|
-
|
|
14
|
-
stages:
|
|
15
|
-
- stage: RunTests
|
|
16
|
-
displayName: 'Run Android & IOS tests'
|
|
17
|
-
jobs:
|
|
18
|
-
- job: TestAndroid
|
|
19
|
-
timeoutInMinutes: 120
|
|
20
|
-
displayName: 'Test android'
|
|
21
|
-
steps:
|
|
22
|
-
|
|
23
|
-
- script: |
|
|
24
|
-
adb devices
|
|
25
|
-
displayName: 'Start adb server'
|
|
26
|
-
|
|
27
|
-
- script: |
|
|
28
|
-
$ANDROID_HOME/tools/bin/sdkmanager "system-images;android-$(api-level);google_apis;x86"
|
|
29
|
-
displayName: 'Download system image'
|
|
30
|
-
|
|
31
|
-
- script: |
|
|
32
|
-
$ANDROID_HOME/tools/bin/avdmanager create avd --force --name TestEmulator --abi google_apis/x86 --package 'system-images;android-$(api-level);google_apis;x86' --device "Nexus 6P"
|
|
33
|
-
displayName: 'Creating Android emulator'
|
|
34
|
-
|
|
35
|
-
- script: |
|
|
36
|
-
$ANDROID_HOME/emulator/emulator -avd TestEmulator -noaudio -no-window -no-snapshot-save -no-boot-anim -memory 6144 &
|
|
37
|
-
displayName: 'Start Android emulator'
|
|
38
|
-
|
|
39
|
-
- script: |
|
|
40
|
-
$ANDROID_HOME/platform-tools/adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed | tr -d '\r') ]]; do sleep 1; done'
|
|
41
|
-
displayName: 'Wait for emulator to boot'
|
|
42
|
-
|
|
43
|
-
- script: |
|
|
44
|
-
adb shell settings put global window_animation_scale 0.0
|
|
45
|
-
displayName: 'Disable animations and transitions'
|
|
46
|
-
|
|
47
|
-
- script: |
|
|
48
|
-
adb shell settings put global transition_animation_scale 0.0
|
|
49
|
-
displayName: 'Disable animations and transitions'
|
|
50
|
-
|
|
51
|
-
- script: |
|
|
52
|
-
adb shell settings put global animator_duration_scale 0.0
|
|
53
|
-
displayName: 'Disable animations and transitions'
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
- task: JavaToolInstaller@0
|
|
57
|
-
inputs:
|
|
58
|
-
versionSpec: '11'
|
|
59
|
-
jdkArchitectureOption: 'x64'
|
|
60
|
-
jdkSourceOption: 'PreInstalled'
|
|
61
|
-
displayName: 'Change Java version'
|
|
62
|
-
|
|
63
|
-
- script: |
|
|
64
|
-
npm install
|
|
65
|
-
displayName: 'Package Installation'
|
|
66
|
-
|
|
67
|
-
- script: |
|
|
68
|
-
npm run build:tests && npm run test:setup:android
|
|
69
|
-
displayName: 'Setup Android tests'
|
|
70
|
-
|
|
71
|
-
- script: |
|
|
72
|
-
npm run test:fast:android
|
|
73
|
-
displayName: 'Run Android test'
|
|
74
|
-
|
|
75
|
-
- job: TestIOS
|
|
76
|
-
timeoutInMinutes: 120
|
|
77
|
-
displayName: 'Test IOS'
|
|
78
|
-
steps:
|
|
79
|
-
|
|
80
|
-
- script: |
|
|
81
|
-
npm install
|
|
82
|
-
displayName: 'Install dependencies'
|
|
83
|
-
|
|
84
|
-
- script: |
|
|
85
|
-
npm run build:tests && npm run test:setup:ios
|
|
86
|
-
displayName: 'Setup iOS tests'
|
|
87
|
-
|
|
88
|
-
- script: |
|
|
89
|
-
npm run test:fast:ios
|
|
90
|
-
displayName: 'Run tests'
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tool": "Credential Scanner",
|
|
3
|
-
"suppressions": [
|
|
4
|
-
{
|
|
5
|
-
"file": "/Examples/CodePushDemoApp/android/app/debug.keystore",
|
|
6
|
-
"_justification": "Used only in DemoApp"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"file": "/Examples/CodePushDemoAppCpp/windows/CodePushDemoAppCpp/CodePushDemoAppCpp_TemporaryKey.pfx",
|
|
10
|
-
"_justification": "Used only in DemoApp"
|
|
11
|
-
}
|
|
12
|
-
]
|
|
13
|
-
}
|
|
14
|
-
|