Scaffold a @spotify/web-scripts library quickly. Code was directly inspired by create-next-app.
yarn create @spotify/web-scripts-library my-cool-librarynpx @spotify/create-web-scripts-library my-cool-libraryconst path = require('path');
const createWebScriptsLibrary = require('@spotify/create-web-scripts-library');
async function start() {
await createWebScriptsLibrary(path.resolve('my-cool-library'));
}