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 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()}.js`);
5025
+ const tempFile = path7.join(tempDir, `skedyul-config-${Date.now()}.cjs`);
5026
5026
  fs9.writeFileSync(tempFile, transpiled);
5027
5027
  moduleToLoad = tempFile;
5028
5028
  try {
@@ -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()}.js`);
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()}.js`);
4154
+ const tempFile = path.join(tempDir, `skedyul-config-${Date.now()}.cjs`);
4155
4155
  fs3.writeFileSync(tempFile, transpiled);
4156
4156
  moduleToLoad = tempFile;
4157
4157
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "1.2.31",
3
+ "version": "1.2.32",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",