0.0.13 • Published 3 years ago

@niieani/beemo-build-tools v0.0.13

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

beemo-build-tools

Steps:

yarn set version berry
yarn init # add --workspace if monorepo
echo 'nodeLinker: "node-modules"' >> .yarnrc.yml
yarn add @niieani/beemo-build-tools --dev

Setup your .config/beemo.ts, for example:

import {BeemoConfig} from '@beemo/core'

const config: BeemoConfig = {
  module: '@niieani/beemo-build-tools',
  drivers: ['babel', 'eslint', 'jest', 'prettier', 'typescript', 'webpack'],
  settings: {
    // for vite:
    vite: true,
  },
}

export default config

Run scaffolding:

yarn beemo run-script init-project

Make it into a repo:

git init

Add NPM_TOKEN secret to GitHub repo for semantic-release to work.

Profit!