Skip to content

JohnCoene/parcel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

parcel

docs

Interact with parcel from R, supports npm and yarn.

Installation

# install.packages("remotes")
remotes::install_github("JohnCoene/parcel")

Example

Parcel is much less hands-on than packer.

library(parcel)

# create a package
usethis::create_package("testParcel")
setwd("testParcel")

# use parcel
set_engine("yarn") # defaults to npm
scaffold_parcel()