Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
vega-lite-dev-config
Advanced tools
Version-controlled build config for easy re-use and sharing
Version-controlled build config for easy re-use and sharing using Beemo.
yarn add --dev vega-lite-dev-config
Before using the build config provided you should remove any older dependencies or config files for the drivers you intend to use (e.g., remove eslint
and .eslintrc
). vega-lite-dev-config
will handle these dependencies, and it will auto-generate the config files for you.
This project is built with beemo, and therefore requires a ".config/beemo.ts"
configuration file with a list of drivers you want to enable. You can optionally configure some drivers as shown below:
// .config/beemo.ts
import { Config } from "vega-lite-dev-config";
const config: Config = {
module: 'vega-lite-dev-config',
drivers: {
babel: true,
prettier: true,
eslint: true,
jest: true,
typescript: {
buildFolder: "build"
}
},
// optional settings for the vega-lite-dev-config
settings: {
node: true,
react: false,
babel: {
jest: true
}
}
};
If you want to customize the drivers, you need to create overrides as described in the Beemo docs.
Executing a driver will initialize Beemo's pipeline, generate configuration files (e.g., it will generate a .eslintrc
or prettier.config.js
, and execute the underlying driver binary and logging to the console.
All arguments passed to Beemo are passed to driver.
You may define these commands as scripts in your package.json:
// package.json
{
"scripts": {
"prepare": "beemo create-config --silent",
"test": "beemo jest",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"prettierbase": "beemo prettier '*.{css,scss,html}'",
"eslintbase": "beemo eslint .",
"format": "yarn eslintbase --fix && yarn prettierbase --write",
"lint": "yarn eslintbase && yarn prettierbase --check",
"types": "beemo typescript",
"types:watch": "beemo typescript --watch"
}
}
Publishing is handled by a 2-branch pre-release process, configured in publish.yml
. All changes should be based off the default next
branch, and are published automatically unless a skip-release
label is applied to the PR.
next
pre-release tag on NPM. The result can be installed with npm install vega-tooltip/@next
.
next
, please use the squash and merge
strategy.next
into stable
using this compare link.
next
into stable
, please use the create a merge commit
strategy.FAQs
Version-controlled build config for easy re-use and sharing
The npm package vega-lite-dev-config receives a total of 29 weekly downloads. As such, vega-lite-dev-config popularity was classified as not popular.
We found that vega-lite-dev-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.