12
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2026-05-19 06:11:53 +00:00

more commonjs vs. esm tweaks

This commit is contained in:
Leif Ødegård Uhlen 2026-05-05 10:31:16 +02:00
parent a1d9acfe39
commit f328ed8b3c
6 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
import core from '@actions/core'
import * as core from '@actions/core'
const stringToJson = require('@cycjimmy/awesome-js-funcs/cjs/typeConversion/stringToJson.cjs').default;
const inputs = require('./inputs.json');

View file

@ -1,4 +1,4 @@
import core from '@actions/core'
import * as core from '@actions/core'
const {
handleBranchesOption,
handleDryRunOption,

View file

@ -1,5 +1,5 @@
const path = require('path');
import core from '@actions/core'
import * as core from '@actions/core'
const exec = require('./_exec');
const inputs = require('./inputs.json');

View file

@ -1,5 +1,5 @@
const path = require('path');
import core from '@actions/core'
import * as core from '@actions/core'
const exec = require('./_exec');
/**

View file

@ -1,5 +1,5 @@
const path = require('path');
import core from '@actions/core'
import * as core from '@actions/core'
const outputs = require('./outputs.json');
/**

View file

@ -1,4 +1,4 @@
import core from '@actions/core'
import * as core from '@actions/core'
const outputs = require('./outputs.json');
/**