Skip to content

Commit

Permalink
package 09.01.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Koreman committed Jan 9, 2025
1 parent bd868fa commit b09d3a9
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

### [1.37.4](https://github.com/ajaxorg/ace/compare/v1.37.3...v1.37.4) (2025-01-09)


### Bug Fixes

* Remove unnecesary `typeof` from type imports in declarations ([#5715](https://github.com/ajaxorg/ace/issues/5715)) ([2c8bf91](https://github.com/ajaxorg/ace/commit/2c8bf916d75b086b958c205896bc2adc1747d241))

### [1.37.3](https://github.com/ajaxorg/ace/compare/v1.37.2...v1.37.3) (2025-01-07)

### [1.37.2](https://github.com/ajaxorg/ace/compare/v1.37.1...v1.37.2) (2025-01-06)
Expand Down
6 changes: 3 additions & 3 deletions ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ declare module "ace-builds" {
type DragdropHandler = import("ace-builds-internal/mouse/dragdrop_handler").DragdropHandler;
type AppConfig = import("ace-builds-internal/lib/app_config").AppConfig;
type Config = typeof import("ace-builds-internal/config");
type GutterTooltip = typeof import("ace-builds-internal/mouse/default_gutter_handler").GutterTooltip;
type GutterKeyboardEvent = typeof import("ace-builds-internal/keyboard/gutter_handler").GutterKeyboardEvent;
type GutterTooltip = import("ace-builds-internal/mouse/default_gutter_handler").GutterTooltip;
type GutterKeyboardEvent = import("ace-builds-internal/keyboard/gutter_handler").GutterKeyboardEvent;
type AfterLoadCallback = (err: Error | null, module: unknown) => void;
type LoaderFunction = (moduleName: string, afterLoad: AfterLoadCallback) => void;
export interface ConfigOptions {
Expand Down Expand Up @@ -978,7 +978,7 @@ declare module "ace-builds" {
import { Range } from "ace-builds-internal/range";
import { UndoManager } from "ace-builds-internal/undomanager";
import { VirtualRenderer as Renderer } from "ace-builds-internal/virtual_renderer";
export var version: "1.37.3";
export var version: "1.37.4";
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ace-builds",
"main": "./src-noconflict/ace.js",
"typings": "ace.d.ts",
"version": "1.37.3",
"version": "1.37.4",
"description": "Ace (Ajax.org Cloud9 Editor)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion src-min-noconflict/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-noconflict/ace.js
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ var reportErrorIfPathIsNotConfigured = function () {
reportErrorIfPathIsNotConfigured = function () { };
}
};
exports.version = "1.37.3";
exports.version = "1.37.4";

});

Expand Down
2 changes: 1 addition & 1 deletion src/ace.js
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ var reportErrorIfPathIsNotConfigured = function () {
reportErrorIfPathIsNotConfigured = function () { };
}
};
exports.version = "1.37.3";
exports.version = "1.37.4";

});

Expand Down
2 changes: 1 addition & 1 deletion types/ace-modules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ declare module "ace-builds-internal/config" {
string
], onLoad: (module: any) => void) => void;
setModuleLoader: (moduleName: any, onLoad: any) => void;
version: "1.37.3";
version: "1.37.4";
};
export = _exports;
}
Expand Down

0 comments on commit b09d3a9

Please sign in to comment.