UNPKG

sharec-core

Version:

[![.github/workflows/main.yml](https://github.com/lamartire/sharec/workflows/.github/workflows/main.yml/badge.svg)](https://github.com/lamartire/sharec/actions) [![npm](https://img.shields.io/npm/v/sharec)](https://npmjs.com/sharec) ![MIT License](https:/

22 lines (18 loc) 473 B
// @ts-check const { compose } = require('sharec-schema').actions const { listConcatAtom, listMergeAtom, pairAtom } = require('sharec-schema').atoms const babelEnvJson = compose({ plugins: listMergeAtom(pairAtom), presets: listMergeAtom(pairAtom), }) const babelJson = compose({ env: compose({ $$default: babelEnvJson, }), plugins: listMergeAtom(pairAtom), presets: listMergeAtom(pairAtom), ignore: listConcatAtom, }) module.exports = { babelJson, }