You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Augustin AFFOGNON 85fc9bd6d8
View
2 years ago
..
build View 2 years ago
node_modules View 2 years ago
LICENSE View 2 years ago
README.md View 2 years ago
package.json View 2 years ago

README.md

👋 Welcome to
@expo/package-manager

A library for installing and finding packages in a project.


🏁 Setup

Install @expo/package-manager in your project.

yarn add @expo/package-manager

Usage

import * as PackageManager from '@expo/package-manager';

const manager = PackageManager.createForProject(projectRoot);

await Promise.all([
  manager.addDevAsync(['@expo/webpack-config']),
  manager.addAsync(['expo', 'expo-camera']),
]);