Centralized CLI for JavaScript and TypeScript dev tools.
npm install @oriflame/lumos
Manage dev and build tools, their configuration, and commands in a single centralized repository.
Lumos aims to solve the multi-project maintenance fatigue by removing the following burdens across
all projects: config and dotfile management, multiple config patterns, up-to-date development
dependencies, continuous copy and paste, and more.
Built on and powered by Beemo.
``sh`
npm install --save-dev @oriflame/lumos
Or yarn
`sh`
yarn add --dev @oriflame/lumos
Create lumos.ts in .config folder.
`typescript
import type { LumosConfig } from '@oriflame/lumos';
const config: LumosConfig = {
module: '@oriflame/lumos',
drivers: [
'babel',
'eslint',
'jest',
'prettier',
['typescript', { declarationOnly: true, buildFolder: 'dts' }],
],
settings: {
react: true,
library: true,
future: true,
coverage: 97,
node: true,
buildFolder: 'esm',
},
};
export default config;
`
- babel
- eslint
- jest
- prettier
- typescript
- webpack
- buildFolder(string) - Build folderesmBuildFolder
- (string) - Es modules build foldercoverage
- (number) - Code coverageenv
- (LumosEnvSetting) - Babel env settings (see:graphql
preset-env#options)
- (boolean) - Enable graphql supportlibrary
- (boolean) - Enable optimizations for libraryfuture
- (boolean) - Enable support for esnext javascriptnode
- (boolean) - Enable node optimizationsreact
- (boolean) - Enable react support and optimizationsnextjs
- (boolean) - Enable nextjs supportsrcFolder
- (string) - Source foldertestsFolder
- (string) - Test foldertypesFolder
- (string) - Types folderdeclarationFolder
- (string) - Output declaration folderentryPoint
- (string) - Webpack entry pointpublicPath
- (string) - Webpack public pathroot
- (string) - Change root folderdeclarationOnly
- (boolean) - Enable declaration only for typescriptallowJs
- (boolean) - Allow js in typescriptskipLibCheck
- (boolean) - Skip library check in typescriptemptyBabelConfig
- (boolean) - Enable empty babel configurationenableSharedModules
- (boolean) - Enable shared modulesenableConsoleMocks
- (boolean) - Enable jest console mockssharedModulesManifestPath
- (string) - Path to shared module manifest relative to packagesharedModulesPackage
- (string) - Shared module packageassumptions
- (Assumptions) - Babel assumptions (see:checkedFolders
compiler assumptions,
preset-env#loose)
- (string[]) - List of extra folder names (relative to root) to be checked witheslint
and tsc (excluded from build)
Executing a driver will dynamically create a configuration file at runtime. If you'd like to create
the config manually outside of executing a driver, you can use the lumos create-config.
`shAll drivers
lumos create-config
$3
Your configuration module may now house and provide all configurations, but that doesn't mean it's
applicable to all consuming projects. To accommodate this, Beemo supports overriding of driver
config on a project-by-project basis through a local
.config/lumos/ file..config/lumos/eslint.ts`typescript
import { ESLintConfig } from '@oriflame/lumos';const config: ESLintConfig = {
rules: {
'no-param-reassign': 0,
},
};
export default config;
`$3
Lumos provides sane defaults for all official drivers and attempts to standardize the configuration
process as much as possible. However, it's not perfect, and may not work for all consumers. To
mitigate this problem, each driver supports a template based strategy, in which a custom template
function can be used to handle the config generation (custom merging, etc), and the destination file
path.
To use templates, set the driver
configStrategy option to "template", and the template option to
a file path for the template function (relative to the .config folder)..config/lumos.ts`typescript
import { LumosConfig } from '@oriflame/lumos';const config: LumosConfig = {
module: '@oriflame/lumos',
drivers: [
[
'eslint',
{
configStrategy: 'template',
template: './path/to/custom/template.ts',
},
],
],
};
export default config;
`The template is merely a function that receives a list of config objects from multiple sources, and
must return a single config object (or string), and an optional destination path. It also receives
an options object with helpful information about the current process.
To demonstrate the power of templates, let's write a custom template that generates a YAML
configuration file for ESLint.
./path/to/custom/template.ts`typescript
import { yaml } from '@boost/common';
import { ConfigObject, ConfigTemplateResult, ConfigTemplateOptions } from '@oriflame/lumos';export default function customTemplate(
configs: ConfigObject[],
options: ConfigTemplateOptions,
): ConfigTemplateResult {
// Manually merge the list of configs into a single config object
// using the rules of the driver, or ones unique to your project.
const config = mergeConfigs(configs);
// A template must return a
config property, which can be an object
// that will be formatted as JSON/JS, or a string which will be written as-is.
// It can also return an optional path property, allowing the destination
// config file path to be customized.
return {
config: yaml.stringify(config),
path: options.context.cwd.append('.eslintrc.yaml'),
};
}
`Scripts
$3
Lumos can scaffold projects through the amazing hygen library. Hygen separates templates into
groupings of "generators" and "actions", coupling a front matter concept with ejs, to deliver a
powerful and convenient experience.
`sh
npx lumos scaffold project dotfiles
`Configs
$3
#### Applicable settings
-
env
- esm
- graphql
- library
- node
- react
- empty
- srcFolder#### Cli scripts
Options that are added automatically.
-
--copy-files
- --out-dir
- when typescript is used --extensions ts,tsx is addedCli options:
-
--[no-]clean
- --esm
- --workspaces=*
- --copy-files
- --extensions`sh
lumos babel
lumos babel --esm
lumos babel --clean
lumos babel --workspaces=*
`#### Overriding config
.configs/lumos/babel.ts`typescript
import type { BabelConfig } from '@oriflame/lumos;const config: BabelConfig = {
plugins: ['babel-plugin-typescript-to-proptypes'],
};
export default config;
``
#### Applicable settings
- futurenode
- nextjs
-
#### Cli scripts
Options that are added automatically.
- --cache--color
- --ext ts,tsx
- when typescript is used is added
Cli options:
- --ext extensions--color
- --workspaces
-
`sh`
lumos eslint
lumos eslint --workspaces=*
lumos eslint
#### Overriding config
.configs/lumos/eslint.ts
`typescript;
import type { ESLintConfig } from '@oriflame/lumos
const config: ESLintConfig = {
rules: {
semi: 'off',
},
};
export default config;
``
#### Applicable settings
- graphqlnode
- react
- threshold
- testResultFileName
- enableConsoleMocks
-
#### Cli scripts
Options that are added automatically.
- --logHeapUsage--color
- --detectOpenHandles
- when coverage is used is addedesm
- when is enabled NODE_OPTIONS --experimental-vm-modules is used
`sh`
lumos jest
lumos jest --coverage
#### Overriding config
.configs/lumos/jest.ts
`typescript
import type { JestConfig } from '@oriflame/lumos';
const config: JestConfig = {
coveragePathIgnorePatterns: ['stories/', 'internals/', 'test-utils/', 'fonts/', '__fixtures__/'],
};
export default config;
`
#### Cli scripts
Options that are added automatically.
- --write
`sh`
lumos prettier
lumos prettier --write .
#### Overriding config
.configs/lumos/prettier.ts
`typescript
import type { PrettierConfig } from '@oriflame/lumos';
const config: PrettierConfig = {
semi: false,
};
export default config;
`
Synchronizing project configs isn't automatic and has to be done via the script.
`sh`
lumos typescript:sync-project-refs
#### Applicable settings
- libraryfuture
- react
- srcFolder
- allowJs
- skipLibCheck
- sourceMaps
-
#### Cli scripts
Cli options:
- --noEmit--build
-
`sh`
lumos typescript
lumos typescript --noEmit
lumos typescript --build
lumos typescript:sync-project-refs
#### Overriding config
.configs/lumos/typescript.ts
`typescript
import type { TypeScriptConfig } from '@oriflame/lumos';
const config: TypeScriptConfig = {
compilerOptions: {
lib: ['DOM'],
},
};
export default config;
`
#### Applicable settings
- buildFolderreact
- sourceMaps
- parallel
- root
- publicPath
- srcFolder
- entryPoint
- host
- devServerContentBase
- enableSharedModules
- sharedModulesManifestPath
- sharedModulesPackage
-
#### Cli scripts
Options that are added automatically.
- --colors--progress
- --bail
-
Cli options:
- --sourceMaps--analyze
- --parallel
- --buildFolder
- build
- default: --entryPoint
-
`sh`
lumos webpack
lumos webpack --analyze
lumos webpack --sourceMaps=false
lumos webpack --root=./packages/test
lumos webpack build --workspaces=*
> Start application with webpack lumos create-config webpack && lumos-webpack-server
> ⚠️ When using webpack in workspaces packages needs to have
> packages/
Webpack cli options:
Webpack cli options can be find here:
OPTIONS.md
Webpack cli commands:
``
build|bundle|b Run webpack (default command, can be omitted).
help|h [command] [option] Display help for commands and options.
info|i [options] Outputs information about your system.
version|v [commands...] Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and commands.
#### Lumos-webpack-server
Cli options:
- --root(string) - relative path to package--port
- (number) - dev server port3000
- default: --entryPoint
- (string) - webpack entry point relative to root--env
- (string) - Node envdevelopment
- default:
`sh`
lumos-webpack-server
lumos-webpack-server --port=3001
lumos-webpack-server --root=./packages/root
> lumos webpack server can be run from workspace package yarn workspace @app/my-app run start andlumos-webpack-server
> start script . Lumos will try to find webpack.config.js in parent
> directories up to 5 levels.
#### Overriding config
.configs/lumos/webpack.ts
`typescript
import type { WebpackConfig } from '@oriflame/lumos';
const config: WebpackConfig = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
};
export default config;
``