create-web-scripts-library
Scaffold a @spotify/web-scripts library quickly. Code was directly inspired by create-next-app.
Usage
yarn create
With yarn create @spotify/web-scripts-library my-cool-library
npx
With 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'));
}