Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

create-web-scripts-library

Scaffold a @spotify/web-scripts library quickly. Code was directly inspired by create-next-app.

Usage

With yarn create

yarn create @spotify/web-scripts-library my-cool-library

With npx

npx @spotify/create-web-scripts-library my-cool-library

Programatically

const path = require('path');
const createWebScriptsLibrary = require('@spotify/create-web-scripts-library');

async function start() {
  await createWebScriptsLibrary(path.resolve('my-cool-library'));
}