Home
last modified time | relevance | path

Searched refs:newStep (Results 1 – 10 of 10) sorted by relevance

/expo/packages/create-expo-module/build/
H A Dutils.js6 …rts.findGitHubProfileUrl = exports.findGitHubEmail = exports.findMyName = exports.newStep = void 0;
11 async function newStep(title, action, options = {}) { function
29 exports.newStep = newStep;
H A DcreateExampleApp.js32 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 Dutils.d.ts3 export declare function newStep<Result>(title: string, action: (step: ora.Ora) => Promise<Result> |… function
H A Dcreate-expo-module.js80 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 DcreateExampleApp.js.map1newStep } from './utils';\n\nconst debug = require('debug')('create-expo-module:createExampleApp')…
H A Dutils.js.map1 …ora';\n\nexport type StepOptions = ora.Options;\n\nexport async function newStep<Result>(\n title…
H A Dcreate-expo-module.js.map1newStep } from './utils';\n\nconst debug = require('debug')('create-expo-module:main') as typeof c…
/expo/packages/create-expo-module/src/
H A DcreateExampleApp.ts10 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 Dcreate-expo-module.ts27 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 Dutils.ts8 export async function newStep<Result>( function