Move source map install to index.js

This commit is contained in:
Koen Kanters 2021-08-14 09:59:31 +02:00
parent 5a2f262fe5
commit 17dc22fdb0
2 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,7 @@ const fs = require('fs');
const path = require('path');
const {exec} = require('child_process');
const rimraf = require('rimraf');
require('source-map-support').install();
let controller;
let stopping = false;

View File

@ -1,7 +1,6 @@
import yaml from 'js-yaml';
import fs from 'fs';
import equals from 'fast-deep-equal/es6';
import 'source-map-support/register';
export function read(file: string): KeyValue {
try {