Skip to content

Commit 964a264

Browse files
committed
1 parent 1706254 commit 964a264

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
> - :house: [Internal]
1010
> - :nail_care: [Polish]
1111

12+
## 4.13.5
13+
14+
#### :house: Internal
15+
16+
- **Build**: pin the ESM build to the project's TypeScript (`node_modules/.bin/tsc`) instead of a bare `tsc` resolved from `PATH`. The `4.13.4` publish build broke after the GitHub runner image began shipping a newer global TypeScript that rejects options (`baseUrl`, `downlevelIteration`, `moduleResolution: "node"`) which the project's pinned TypeScript 6.0.2 still accepts. This re-releases the 4.13.4 security fixes, which never reached npm.
17+
1218
## 4.13.4
1319

1420
#### :bug: Bug Fix

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ ifeq ($(BUILD_ESM), true)
135135
esm:
136136
@echo 'Build esm modules ...' $(BUILD_ESM)
137137
rm -rf $(pwd)/build/esm
138-
tsc -p $(pwd)/tsconfig.esm.json --rootDir $(pwd)/src --importHelpers false --allowJs true --checkJs false --excludeDirectories $(pwd)/node_modules --removeComments false --sourceMap false --outDir $(pwd)/build/esm
138+
$(NODE_MODULES_BIN)/tsc -p $(pwd)/tsconfig.esm.json --rootDir $(pwd)/src --importHelpers false --allowJs true --checkJs false --excludeDirectories $(pwd)/node_modules --removeComments false --sourceMap false --outDir $(pwd)/build/esm
139139

140140
@echo 'Remove style imports ...'
141141
@$(NODE_MODULES_BIN)/replace "import .+\.(less|css)('|\");" '' $(pwd)/build/esm -r --silent

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jodit",
3-
"version": "4.13.4",
3+
"version": "4.13.5",
44
"description": "Jodit is an awesome and useful wysiwyg editor with filebrowser",
55
"main": "build/jodit.min.js",
66
"types": "./types/index.d.ts",

statoscope/reference.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)