bajo-extra 2.0.1 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/FUNDING.yml +0 -0
- package/.github/workflows/repo-lockdown.yml +0 -0
- package/.jsdoc.conf.json +0 -0
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/docs/BajoExtra.html +0 -0
- package/docs/data/search.json +0 -0
- package/docs/fonts/Inconsolata-Regular.ttf +0 -0
- package/docs/fonts/OpenSans-Regular.ttf +0 -0
- package/docs/fonts/WorkSans-Bold.ttf +0 -0
- package/docs/global.html +0 -0
- package/docs/index.html +0 -0
- package/docs/index.js.html +0 -0
- package/docs/scripts/core.js +476 -477
- package/docs/scripts/core.min.js +0 -0
- package/docs/scripts/resize.js +36 -36
- package/docs/scripts/search.js +105 -105
- package/docs/scripts/search.min.js +0 -0
- package/docs/scripts/third-party/Apache-License-2.0.txt +0 -0
- package/docs/scripts/third-party/fuse.js +1 -1
- package/docs/scripts/third-party/hljs-line-num-original.js +282 -285
- package/docs/scripts/third-party/hljs-line-num.js +1 -1
- package/docs/scripts/third-party/hljs-original.js +1195 -1202
- package/docs/scripts/third-party/hljs.js +1 -1
- package/docs/scripts/third-party/popper.js +1 -1
- package/docs/scripts/third-party/tippy.js +1 -1
- package/docs/scripts/third-party/tocbot.js +508 -509
- package/docs/scripts/third-party/tocbot.min.js +0 -0
- package/docs/static/bitcoin.jpeg +0 -0
- package/docs/static/home.md +0 -0
- package/docs/static/logo-ecosystem.png +0 -0
- package/docs/static/logo.png +0 -0
- package/docs/styles/clean-jsdoc-theme-base.css +0 -0
- package/docs/styles/clean-jsdoc-theme-dark.css +0 -0
- package/docs/styles/clean-jsdoc-theme-light.css +0 -0
- package/docs/styles/clean-jsdoc-theme-scrollbar.css +0 -0
- package/docs/styles/clean-jsdoc-theme-without-scrollbar.min.css +0 -0
- package/docs/styles/clean-jsdoc-theme.min.css +0 -0
- package/extend/bajo/intl/en-US.json +0 -0
- package/extend/bajo/intl/id.json +0 -0
- package/extend/bajoCli/applet/download.js +0 -0
- package/extend/bajoCli/applet/hash.js +0 -0
- package/extend/bajoCli/applet.js +0 -0
- package/index.js +3 -4
- package/package.json +8 -7
- package/wiki/CHANGES.md +5 -0
- package/wiki/CONFIG.md +0 -0
- package/wiki/CONTRIBUTING.md +0 -0
- package/wiki/toc.json +0 -0
|
File without changes
|
package/docs/static/bitcoin.jpeg
CHANGED
|
File without changes
|
package/docs/static/home.md
CHANGED
|
File without changes
|
|
File without changes
|
package/docs/static/logo.png
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/extend/bajo/intl/id.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/extend/bajoCli/applet.js
CHANGED
|
File without changes
|
package/index.js
CHANGED
|
@@ -119,9 +119,7 @@ async function factory (pkgName) {
|
|
|
119
119
|
*
|
|
120
120
|
* @class
|
|
121
121
|
*/
|
|
122
|
-
class BajoExtra extends this.app.
|
|
123
|
-
static alias = 'extra'
|
|
124
|
-
|
|
122
|
+
class BajoExtra extends this.app.baseClass.Base {
|
|
125
123
|
constructor () {
|
|
126
124
|
super(pkgName, me.app)
|
|
127
125
|
this.config = {
|
|
@@ -184,7 +182,8 @@ async function factory (pkgName) {
|
|
|
184
182
|
}
|
|
185
183
|
|
|
186
184
|
download = async (url, opts = {}, extra = {}) => {
|
|
187
|
-
const { getPluginDataDir, importPkg
|
|
185
|
+
const { getPluginDataDir, importPkg } = this.app.bajo
|
|
186
|
+
const { generateId } = this.app.lib.aneka
|
|
188
187
|
const { fetch } = await importPkg('bajoExtra:undici')
|
|
189
188
|
const { fs } = this.app.lib
|
|
190
189
|
const { isFunction, merge } = this.app.lib._
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bajo-extra",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Extra package for Bajo Framework",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"bajo": {
|
|
12
|
-
"type": "plugin"
|
|
12
|
+
"type": "plugin",
|
|
13
|
+
"alias": "extra"
|
|
13
14
|
},
|
|
14
15
|
"repository": {
|
|
15
16
|
"type": "git",
|
|
@@ -31,14 +32,14 @@
|
|
|
31
32
|
"homepage": "https://github.com/ardhi/bajo-extra#readme",
|
|
32
33
|
"dependencies": {
|
|
33
34
|
"async": "^3.2.6",
|
|
34
|
-
"bcrypt": "^
|
|
35
|
-
"cheerio": "^1.1.
|
|
36
|
-
"fast-jwt": "^
|
|
37
|
-
"fast-xml-parser": "^
|
|
35
|
+
"bcrypt": "^6.0.0",
|
|
36
|
+
"cheerio": "^1.1.2",
|
|
37
|
+
"fast-jwt": "^6.1.0",
|
|
38
|
+
"fast-xml-parser": "^5.3.3",
|
|
38
39
|
"numbro": "^2.5.0",
|
|
39
40
|
"performant-array-to-tree": "^1.11.0",
|
|
40
41
|
"short-crypt": "^4.0.0",
|
|
41
|
-
"undici": "^7.
|
|
42
|
+
"undici": "^7.16.0"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"clean-jsdoc-theme": "^4.3.0",
|
package/wiki/CHANGES.md
ADDED
package/wiki/CONFIG.md
CHANGED
|
File without changes
|
package/wiki/CONTRIBUTING.md
CHANGED
|
File without changes
|
package/wiki/toc.json
CHANGED
|
File without changes
|