Skip to content

Commit 7e1d645

Browse files
v0.2.3
1 parent 214781c commit 7e1d645

File tree

8 files changed

+10
-16
lines changed

8 files changed

+10
-16
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ nmp install base-ex
3333
## Build
3434
The GitHub repository has ready to use builds included. You can find them in [dist](https://github.com/UmamiAppearance/BaseExJS/tree/main/dist). The npm package comes without pre build files.
3535

36-
_To be able to build, make sure to install the package with:_
37-
```sh
38-
npm i base-ex --save-dev
39-
```
40-
4136
For building you have to run:
4237

4338
```sh
@@ -102,7 +97,7 @@ import {Base16, Base32, Base64, Base85, Base91, BaseEx} from "base-ex"
10297
```
10398

10499
### Working with it (Browser/Node)
105-
Try out the [Demopage](https://umamiappearance.github.io/BaseExJS/demo.html). You'll find an online base converter and code examples that will work independently from your environment (assuming the used class is imported).
100+
Try out the [Demopage](https://umamiappearance.github.io/BaseExJS/demo.html). You'll find an online base converter and code examples that will work independently from your environment.
106101

107102
## License
108103
This work is licensed under [GPL-3.0](https://opensource.org/licenses/GPL-3.0).

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.2.2
4+
* @version 0.2.3
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.2.2
7+
* @version 0.2.3
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: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"name": "base-ex",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "A collection of classes for data representation from Base16 (hex) to BasE91 written in JavaScript.",
55
"main": "src/BaseEx.js",
66
"type": "module",
77
"directories": {
8-
"test": "test",
9-
"src": "src"
8+
"test": "test"
109
},
1110
"scripts": {
1211
"build": "rollup -c",

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.2.2
4+
* @version 0.2.3
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)