skedyul 1.2.31 → 1.2.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -5022,7 +5022,7 @@ async function loadConfig(configPath) {
|
|
|
5022
5022
|
if (isTypeScript) {
|
|
5023
5023
|
const transpiled = await transpileTypeScript(absolutePath);
|
|
5024
5024
|
const tempDir = os2.tmpdir();
|
|
5025
|
-
const tempFile = path7.join(tempDir, `skedyul-config-${Date.now()}.
|
|
5025
|
+
const tempFile = path7.join(tempDir, `skedyul-config-${Date.now()}.cjs`);
|
|
5026
5026
|
fs9.writeFileSync(tempFile, transpiled);
|
|
5027
5027
|
moduleToLoad = tempFile;
|
|
5028
5028
|
try {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -3985,7 +3985,7 @@ async function loadConfig(configPath) {
|
|
|
3985
3985
|
if (isTypeScript) {
|
|
3986
3986
|
const transpiled = await transpileTypeScript(absolutePath);
|
|
3987
3987
|
const tempDir = os.tmpdir();
|
|
3988
|
-
const tempFile = path.join(tempDir, `skedyul-config-${Date.now()}.
|
|
3988
|
+
const tempFile = path.join(tempDir, `skedyul-config-${Date.now()}.cjs`);
|
|
3989
3989
|
fs3.writeFileSync(tempFile, transpiled);
|
|
3990
3990
|
moduleToLoad = tempFile;
|
|
3991
3991
|
try {
|
package/dist/index.js
CHANGED
|
@@ -4151,7 +4151,7 @@ async function loadConfig(configPath) {
|
|
|
4151
4151
|
if (isTypeScript) {
|
|
4152
4152
|
const transpiled = await transpileTypeScript(absolutePath);
|
|
4153
4153
|
const tempDir = os.tmpdir();
|
|
4154
|
-
const tempFile = path.join(tempDir, `skedyul-config-${Date.now()}.
|
|
4154
|
+
const tempFile = path.join(tempDir, `skedyul-config-${Date.now()}.cjs`);
|
|
4155
4155
|
fs3.writeFileSync(tempFile, transpiled);
|
|
4156
4156
|
moduleToLoad = tempFile;
|
|
4157
4157
|
try {
|