BREAKING CHANGE(core): switch to esm style module

This commit is contained in:
2022-10-09 18:15:37 +02:00
parent 635f92d2bc
commit d643da29b0
41 changed files with 6592 additions and 19796 deletions

View File

@ -1,6 +1,6 @@
import * as plugins from './mod.plugins';
import { bash } from '../npmci.bash';
import { logger } from '../npmci.logging';
import * as plugins from './mod.plugins.js';
import { bash } from '../npmci.bash.js';
import { logger } from '../npmci.logging.js';
const triggerValueRegex =
/^([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|([a-zA-Z0-9\.]*)\|?([a-zA-Z0-9\.\-\/]*)/;

View File

@ -1 +1 @@
export * from '../npmci.plugins';
export * from '../npmci.plugins.js';