Skip to content

datavisyn/visyn_scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

29b9056 · Jan 28, 2025
Jan 21, 2025
May 16, 2023
Jan 21, 2025
Jan 21, 2025
Jan 28, 2025
Feb 26, 2024
Jan 28, 2025
Nov 28, 2022
Jun 21, 2023
Jun 27, 2022
Jan 21, 2025
Jun 13, 2022
Feb 26, 2024
Jan 28, 2025

Repository files navigation

visyn_scripts

NPM version build

This package includes scripts and configuration files used by datavisyn repositories. Collecting everything in a single installable repository unifies configurations across many repositories, thus reducing the maintenance overhead.

Usage

Install visyn_scripts via npm: npm i --save-dev git+ssh://git@github.com/datavisyn/visyn_scripts.git#develop

Add visyn_scripts to your package.json scripts, i.e. add "compile": "visyn_scripts compile" and execute it with npm run compile, or alternatively directly execute it with npx visyn_scripts compile.

Configurations

visyn_scripts also includes default configurations for ESLint, Prettier, Typescript, ... To integrate them in an existing repository, simply switch to .js configurations and reexport the configurations found in visyn_scripts. This way, any editor will look for a .prettierrc.js in the repository, and will find one exporting the common configuration.

module.exports = require('visyn_scripts/config/prettierrc.template');

FAQ

...