@spotify/create-web-scripts-library
v15.0.0
Published
Project scaffolding script for @spotify/web-scripts libraries
Downloads
260
Readme
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'));
}