source: frontend/node_modules/babel-plugin-istanbul/lib/load-nyc-config-sync.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 376 bytes
Line 
1#!/usr/bin/env node
2'use strict';
3
4const {
5 loadNycConfig
6} = require('@istanbuljs/load-nyc-config');
7
8async function main() {
9 const [cwd, nycrcPath] = process.argv.slice(2);
10 console.log(JSON.stringify(await loadNycConfig({
11 cwd,
12 nycrcPath
13 })));
14}
15
16main().catch(error => {
17 console.log(JSON.stringify({
18 'load-nyc-config-sync-error': error.message
19 }));
20});
Note: See TracBrowser for help on using the repository browser.