Skip to content

Commit d52630b

Browse files
committed
2.0.0-beta.19
* Fixed #69 * Simplified .gitignore * Updated all dependencies
1 parent 19b54d6 commit d52630b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ulog <sub><sup>v2.0.0-beta.18</sup></sub>
1+
# ulog <sub><sup>v2.0.0-beta.19</sup></sub>
22
### The Universal Logger
33

44
[![npm](https://img.shields.io/npm/v/ulog.svg)](https://npmjs.com/package/ulog)
@@ -8,14 +8,14 @@
88

99
<sup><sub><sup><sub>.</sub></sup></sub></sup>
1010

11-
![logo](https://unpkg.com/ulog@2.0.0-beta.18/ulog.png)
11+
![logo](https://unpkg.com/ulog@2.0.0-beta.19/ulog.png)
1212

1313

1414
## The logger for javascript applications
1515

1616
`ulog` is *the* logger for Javascript applications. It's universal, meaning it runs everywhere. You can use `ulog` in your Express server application running on Node JS just as well as in your React single page application running in the browser. It just works.
1717

18-
![screenshot](https://unpkg.com/ulog@2.0.0-beta.18/screenshot.jpg)
18+
![screenshot](https://unpkg.com/ulog@2.0.0-beta.19/screenshot.jpg)
1919

2020

2121
## Features
@@ -130,7 +130,7 @@ log('Logging is easy')
130130
If you want, you can import `ulog` with a script tag:
131131

132132
```html
133-
<script src="https://unpkg.com/ulog@2.0.0-beta.18/ulog.min.js"></script>
133+
<script src="https://unpkg.com/ulog@2.0.0-beta.19/ulog.min.js"></script>
134134
<!-- publishes to `self.anylogger` and `self.ulog`. -->
135135
<!-- lazy loads ulog.lazy.min.js on demand. -->
136136
<script src="myscript.js"></script>
@@ -146,12 +146,12 @@ log('Logging is easy!')
146146
If you want the file for the browser to include in your project yourself, you
147147
can download it from here.
148148

149-
* [ulog.min.js](https://unpkg.com/ulog@2.0.0-beta.18/ulog.min.js) (~2.7kB minified and gzipped)
150-
* [ulog.lazy.min.js](https://unpkg.com/ulog@2.0.0-beta.18/ulog.lazy.min.js) (~4.3kB minified and gzipped)
149+
* [ulog.min.js](https://unpkg.com/ulog@2.0.0-beta.19/ulog.min.js) (~2.7kB minified and gzipped)
150+
* [ulog.lazy.min.js](https://unpkg.com/ulog@2.0.0-beta.19/ulog.lazy.min.js) (~4.3kB minified and gzipped)
151151

152152
> `ulog.min.js` lazy loads `ulog.lazy.min.js` on demand, so make sure to include both files in your download
153153
154-
* [full.min.js](https://unpkg.com/ulog@2.0.0-beta.18/full.min.js) (~5.6kB minified and gzipped)
154+
* [full.min.js](https://unpkg.com/ulog@2.0.0-beta.19/full.min.js) (~5.6kB minified and gzipped)
155155

156156
> Full bundle, no lazy loading
157157
@@ -613,12 +613,12 @@ messages at these higher levels are indented a bit more than the other
613613
messages, making the logging harder to read. This can be clearly seen in the
614614
screenshot from `ulog` v2.0.0-beta-11, which did not yet have alignment:
615615

616-
![screenshot](https://unpkg.com/ulog@2.0.0-beta.18/screenshot-beta.11.jpg)
616+
![screenshot](https://unpkg.com/ulog@2.0.0-beta.19/screenshot-beta.11.jpg)
617617

618618
`ulog` now automatically adds some formatting that negates the extra indentation
619619
the messages at these higher levels get, so all messages are nicely aligned:
620620

621-
![screenshot](https://unpkg.com/ulog@2.0.0-beta.18/screenshot.jpg)
621+
![screenshot](https://unpkg.com/ulog@2.0.0-beta.19/screenshot.jpg)
622622

623623
You can control alignment with [config option `log_align`](#config-option-log_align).
624624

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ulog",
3-
"version": "2.0.0-beta.18",
3+
"version": "2.0.0-beta.19",
44
"description": "The universal logger",
55
"main": "./ulog.js",
66
"unpkg": "ulog.min.js",

tutorial/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>ulog tutorial</title>
55
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
66
<link rel="stylesheet" href="../style.css">
7-
<script src="https://unpkg.com/ulog@2.0.0-beta.18/ulog.min.js"></script>
7+
<script src="https://unpkg.com/ulog@2.0.0-beta.19/ulog.min.js"></script>
88
<script src="test.js"></script>
99
<script src="my-lib.js"></script>
1010
<script src="my-other-lib.js"></script>

vs/debug.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
77
<link rel="stylesheet" href="../style.css">
88
<script src="debug-3.4.2.min.js"></script>
9-
<script src="https://unpkg.com/ulog@2.0.0-beta.18/ulog.min.js"></script>
9+
<script src="https://unpkg.com/ulog@2.0.0-beta.19/ulog.min.js"></script>
1010
<!-- load some small script files with logging in them -->
1111
<!-- to better illustrate if the callstack gets mangled -->
1212
<script src="debug.js"></script>

0 commit comments

Comments
 (0)