Skip to content

Commit 5083b64

Browse files
authored
[WC-2862]: fix import and bump ts-node (#117)
## Checklist - Contains unit tests ❌ - Contains breaking changes ❌ - Did you update version and changelog? ❌ ## This PR contains - [x] Bug fix - [ ] Feature - [ ] Refactor - [ ] Documentation - [x] Other (describe) ## What is the purpose of this PR? Potentially fix some interesting build errors. Update ts-node.
2 parents 526deb6 + a8acbf0 commit 5083b64

5 files changed

Lines changed: 168 additions & 20 deletions

File tree

packages/pluggable-widgets-tools/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed an issue with "release" command failing in some cases.
12+
13+
### Changed
14+
15+
- We updated "ts-node" package to version 10.
16+
917
## [10.18.0] - 2024-12-20
1018

1119
### Added

packages/pluggable-widgets-tools/configs/rollup.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import typescript from "@rollup/plugin-typescript";
1313
import colors from "ansi-colors";
1414
import postcssImport from "postcss-import";
1515
import postcssUrl from "postcss-url";
16-
import { loadConfigFile } from "rollup/dist/loadConfigFile.js";
16+
import loadConfigFile from "rollup/dist/loadConfigFile.js";
1717
import clear from "rollup-plugin-clear";
1818
import command from "rollup-plugin-command";
1919
import license from "rollup-plugin-license";

packages/pluggable-widgets-tools/configs/rollup.config.native.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import replace from "rollup-plugin-re";
1111
import typescript from "@rollup/plugin-typescript";
1212
import url from "@rollup/plugin-url";
1313
import colors from "ansi-colors";
14-
import { loadConfigFile } from "rollup/dist/loadConfigFile.js";
14+
import loadConfigFile from "rollup/dist/loadConfigFile.js";
1515
import clear from "rollup-plugin-clear";
1616
import command from "rollup-plugin-command";
1717
import terser from "@rollup/plugin-terser";

packages/pluggable-widgets-tools/package-lock.json

Lines changed: 156 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/pluggable-widgets-tools/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mendix/pluggable-widgets-tools",
3-
"version": "10.18.0",
3+
"version": "10.18.1",
44
"description": "Mendix Pluggable Widgets Tools",
55
"engines": {
66
"node": ">=20"
@@ -104,7 +104,7 @@
104104
"shelljs": "^0.8.4",
105105
"shx": "^0.3.3",
106106
"ts-jest": "^29.2.5",
107-
"ts-node": "^9.0.0",
107+
"ts-node": "^10.9.2",
108108
"typescript": "^5.6.3",
109109
"xml2js": "^0.6.2",
110110
"zip-a-folder": "^0.0.12"

0 commit comments

Comments
 (0)