Skip to content

Commit a3d2254

Browse files
Merge pull request #6 from UmamiAppearance/v0.3.1
v0.3.1
2 parents 70d1c42 + 1c6bdc7 commit a3d2254

File tree

10 files changed

+26
-12
lines changed

10 files changed

+26
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The **classic import** via script tag has them all available without further ado
9191
* ...
9292
* ``BaseEx.BaseEx``
9393

94-
The same goes for the CommonJS import from Node. The only difference is, that the scope is not necessarily named ``BaseEx``, as this is defined by the user (``const myName = require("base-ex") --> myName.Base16...``).
94+
The same goes for the **CommonJS import** from Node. The only difference is, that the scope is not necessarily named ``BaseEx``, as this is defined by the user (``const myName = require("base-ex") --> myName.Base16...``).
9595

9696
Full **import** for **ES6** modules:
9797

demo.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,10 +395,23 @@
395395
border: 2px dashed #000;
396396
padding: 5px;
397397
}
398+
#code-section h3 span {
399+
margin-right: 1rem;
400+
}
398401
#code-section select {
399402
width: auto;
400403
margin: 0 0 0 1rem;
401404
}
405+
@media screen and (max-width: 1000px) {
406+
#code-section h3 {
407+
font-size: 1rem;
408+
}
409+
}
410+
@media screen and (max-width: 580px) {
411+
#code-section h3 label {
412+
display: none;
413+
}
414+
}
402415
footer {
403416
text-align: right;
404417
margin-right: 6px;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
55
/*
66
* [BaseEx]{@link https://github.com/UmamiAppearance/BaseExJS}
77
*
8-
* @version 0.3.0
8+
* @version 0.3.1
99
* @author UmamiAppearance [mail@umamiappearance.eu]
1010
* @license GPL-3.0 AND BSD-3-Clause (Base91, Copyright (c) 2000-2006 Joachim Henke)
1111
*/

dist/BaseEx.esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* [BaseEx]{@link https://github.com/UmamiAppearance/BaseExJS}
33
*
4-
* @version 0.3.0
4+
* @version 0.3.1
55
* @author UmamiAppearance [mail@umamiappearance.eu]
66
* @license GPL-3.0 AND BSD-3-Clause (Base91, Copyright (c) 2000-2006 Joachim Henke)
77
*/

dist/BaseEx.esm.min.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.

dist/BaseEx.iife.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var BaseEx = (function (exports) {
44
/*
55
* [BaseEx]{@link https://github.com/UmamiAppearance/BaseExJS}
66
*
7-
* @version 0.3.0
7+
* @version 0.3.1
88
* @author UmamiAppearance [mail@umamiappearance.eu]
99
* @license GPL-3.0 AND BSD-3-Clause (Base91, Copyright (c) 2000-2006 Joachim Henke)
1010
*/

dist/BaseEx.iife.min.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.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"name": "base-ex",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "A collection of classes for data representation from Base16 (hex) to basE91 written in JavaScript.",
5-
"main": "dist/BaseEx.cjs.js",
5+
"main": "dist/BaseEx.cjs",
66
"module": "src/BaseEx.js",
7+
"type": "module",
78
"directories": {
89
"test": "test"
910
},
1011
"scripts": {
1112
"build": "rollup -c",
12-
"makeCJS": "rollup src/BaseEx.js --file dist/BaseEx.cjs.js --format cjs",
13+
"makeCJS": "rollup src/BaseEx.js --file dist/BaseEx.cjs --format cjs",
1314
"lint": "eslint ./",
1415
"test": "node test/node.mjs"
1516
},

src/BaseEx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* [BaseEx]{@link https://github.com/UmamiAppearance/BaseExJS}
33
*
4-
* @version 0.3.0
4+
* @version 0.3.1
55
* @author UmamiAppearance [mail@umamiappearance.eu]
66
* @license GPL-3.0 AND BSD-3-Clause (Base91, Copyright (c) 2000-2006 Joachim Henke)
77
*/

0 commit comments

Comments
 (0)