react-native-integrate
Version:
Automate integration of additional code into React Native projects
40 lines (39 loc) • 1.2 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.mockIntegrateWithInvalidMinVersionYml = exports.mockIntegrateWithMinVersionYml = exports.mockIntegrateWithInvalidMinRNVersionYml = exports.mockIntegrateWithMinRNVersionYml = void 0;
// language=yaml
exports.mockIntegrateWithMinRNVersionYml = `
minRNVersion: 0.71
steps:
- task: app_delegate
label: 'App Delegate'
actions:
- block: didFinishLaunchingWithOptions
prepend: "// with-min-rn"`;
// language=yaml
exports.mockIntegrateWithInvalidMinRNVersionYml = `
minRNVersion: invalid
steps:
- task: app_delegate
label: 'App Delegate'
actions:
- block: didFinishLaunchingWithOptions
prepend: "// with-min-rn"`;
// language=yaml
exports.mockIntegrateWithMinVersionYml = `
minVersion: 0.1
steps:
- task: app_delegate
label: 'App Delegate'
actions:
- block: didFinishLaunchingWithOptions
prepend: "// with-min"`;
// language=yaml
exports.mockIntegrateWithInvalidMinVersionYml = `
minVersion: invalid
steps:
- task: app_delegate
label: 'App Delegate'
actions:
- block: didFinishLaunchingWithOptions
prepend: "// with-min"`;