Skip to content

Commit b09d3a9

Browse files
author
Alice Koreman
committed
package 09.01.25
1 parent bd868fa commit b09d3a9

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.37.4](https://github.com/ajaxorg/ace/compare/v1.37.3...v1.37.4) (2025-01-09)
6+
7+
8+
### Bug Fixes
9+
10+
* Remove unnecesary `typeof` from type imports in declarations ([#5715](https://github.com/ajaxorg/ace/issues/5715)) ([2c8bf91](https://github.com/ajaxorg/ace/commit/2c8bf916d75b086b958c205896bc2adc1747d241))
11+
512
### [1.37.3](https://github.com/ajaxorg/ace/compare/v1.37.2...v1.37.3) (2025-01-07)
613

714
### [1.37.2](https://github.com/ajaxorg/ace/compare/v1.37.1...v1.37.2) (2025-01-06)

ace.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ declare module "ace-builds" {
3636
type DragdropHandler = import("ace-builds-internal/mouse/dragdrop_handler").DragdropHandler;
3737
type AppConfig = import("ace-builds-internal/lib/app_config").AppConfig;
3838
type Config = typeof import("ace-builds-internal/config");
39-
type GutterTooltip = typeof import("ace-builds-internal/mouse/default_gutter_handler").GutterTooltip;
40-
type GutterKeyboardEvent = typeof import("ace-builds-internal/keyboard/gutter_handler").GutterKeyboardEvent;
39+
type GutterTooltip = import("ace-builds-internal/mouse/default_gutter_handler").GutterTooltip;
40+
type GutterKeyboardEvent = import("ace-builds-internal/keyboard/gutter_handler").GutterKeyboardEvent;
4141
type AfterLoadCallback = (err: Error | null, module: unknown) => void;
4242
type LoaderFunction = (moduleName: string, afterLoad: AfterLoadCallback) => void;
4343
export interface ConfigOptions {
@@ -978,7 +978,7 @@ declare module "ace-builds" {
978978
import { Range } from "ace-builds-internal/range";
979979
import { UndoManager } from "ace-builds-internal/undomanager";
980980
import { VirtualRenderer as Renderer } from "ace-builds-internal/virtual_renderer";
981-
export var version: "1.37.3";
981+
export var version: "1.37.4";
982982
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
983983
}
984984

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ace-builds",
33
"main": "./src-noconflict/ace.js",
44
"typings": "ace.d.ts",
5-
"version": "1.37.3",
5+
"version": "1.37.4",
66
"description": "Ace (Ajax.org Cloud9 Editor)",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1"

src-min-noconflict/ace.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-min/ace.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-noconflict/ace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ var reportErrorIfPathIsNotConfigured = function () {
13221322
reportErrorIfPathIsNotConfigured = function () { };
13231323
}
13241324
};
1325-
exports.version = "1.37.3";
1325+
exports.version = "1.37.4";
13261326

13271327
});
13281328

src/ace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ var reportErrorIfPathIsNotConfigured = function () {
13221322
reportErrorIfPathIsNotConfigured = function () { };
13231323
}
13241324
};
1325-
exports.version = "1.37.3";
1325+
exports.version = "1.37.4";
13261326

13271327
});
13281328

types/ace-modules.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ declare module "ace-builds-internal/config" {
371371
string
372372
], onLoad: (module: any) => void) => void;
373373
setModuleLoader: (moduleName: any, onLoad: any) => void;
374-
version: "1.37.3";
374+
version: "1.37.4";
375375
};
376376
export = _exports;
377377
}

0 commit comments

Comments
 (0)