Skip to content

Commit

Permalink
Removed source map generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannestegner committed Jun 22, 2020
1 parent 5b4b05c commit 7d22c36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Yolog.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@ declare class Yolog {
* @param [tag] Optional tags to toggle.
* @return Self.
*/
public disableError (...tag: string[]): this;
public disableError (...tag: string[]): Yolog;
/**
* Enable internal error passing to the underlying plugin or event handler.
* If tag name/s are omitted, the setting will be global.
*
* @param [tag] Optional tags to toggle.
* @return Self.
*/
public enableError (...tag: string[]): this;
public enableError (...tag: string[]): Yolog;
/**
* Get a list of tags that are active.
*
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const common = {
"@jitesoft/sprintf": "@jitesoft/sprintf",
"@jitesoft/events": "@jitesoft/events"
},
devtool: false,
module: {
rules: [
{
Expand Down

0 comments on commit 7d22c36

Please sign in to comment.