Skip to content

Commit

Permalink
minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
dasiux committed Apr 15, 2022
1 parent d94a5f8 commit 2a87b59
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.8.3
- Minor improvements.

## 0.8.2
- Added *Exception.previousToStack()* fallback for none string stacks.
- Improved docs nav and some minor typos.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squirrel-forge/ui-util",
"version": "0.8.2",
"version": "0.8.3",
"description": "A collection of utilities, classes, functions and abstracts made for the browser and babel compatible.",
"main": "src/es6/index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/es6/Events/EventDispatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class EventDispatcherException extends Exception {}

/**
* Event dispatcher
* @abstract
* @class
*/
export class EventDispatcher {
Expand Down
2 changes: 1 addition & 1 deletion src/es6/Logic/Plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export class Plugins {
* @return {Object} - Result object
*/
run( method, params = [], restrict = null ) {
if ( this.#debug ) this.#debug.group( this.constructor.name + '::run' );
if ( this.#debug ) this.#debug.group( this.constructor.name + '::run', method );
const results = {};
const names = Object.keys( this.#plugins );
for ( let i = 0; i < names.length; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion src/es6/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*!
/* !
* @module : @squirrel-forge/ui-util
* @version : 0.8.2
* @license : MIT
Expand Down

0 comments on commit 2a87b59

Please sign in to comment.