Searched refs:newStep (Results 1 – 10 of 10) sorted by relevance
| /expo/packages/create-expo-module/build/ |
| H A D | utils.js | 6 …rts.findGitHubProfileUrl = exports.findGitHubEmail = exports.findMyName = exports.newStep = void 0; 11 async function newStep(title, action, options = {}) { function 29 exports.newStep = newStep;
|
| H A D | createExampleApp.js | 32 await (0, utils_1.newStep)('Initializing the example app', async (step) => { 42 await (0, utils_1.newStep)('Configuring the example app', async (step) => { 58 await (0, utils_1.newStep)('Installing dependencies in the example app', async (step) => { 128 await (0, utils_1.newStep)('Prebuilding the example app', async (step) => {
|
| H A D | utils.d.ts | 3 export declare function newStep<Result>(title: string, action: (step: ora.Ora) => Promise<Result> |… function
|
| H A D | create-expo-module.js | 80 await (0, utils_1.newStep)('Creating the module from template files', async (step) => { 85 await (0, utils_1.newStep)('Installing module dependencies', async (step) => { 89 await (0, utils_1.newStep)('Compiling TypeScript files', async (step) => { 113 await (0, utils_1.newStep)('Creating an empty Git repository', async (step) => { 175 return await (0, utils_1.newStep)('Downloading module template from npm', async (step) => {
|
| H A D | createExampleApp.js.map | 1 …newStep } from './utils';\n\nconst debug = require('debug')('create-expo-module:createExampleApp')…
|
| H A D | utils.js.map | 1 …ora';\n\nexport type StepOptions = ora.Options;\n\nexport async function newStep<Result>(\n title…
|
| H A D | create-expo-module.js.map | 1 …newStep } from './utils';\n\nconst debug = require('debug')('create-expo-module:main') as typeof c…
|
| /expo/packages/create-expo-module/src/ |
| H A D | createExampleApp.ts | 10 import { newStep } from './utils'; 40 await newStep('Initializing the example app', async (step) => { 55 await newStep('Configuring the example app', async (step) => { 79 await newStep('Installing dependencies in the example app', async (step) => { 158 await newStep('Prebuilding the example app', async (step) => {
|
| H A D | create-expo-module.ts | 27 import { newStep } from './utils'; 115 await newStep('Creating the module from template files', async (step) => { 120 await newStep('Installing module dependencies', async (step) => { 124 await newStep('Compiling TypeScript files', async (step) => { 150 await newStep('Creating an empty Git repository', async (step) => { 217 return await newStep('Downloading module template from npm', async (step) => {
|
| H A D | utils.ts | 8 export async function newStep<Result>( function
|