@abw/badger 1.2.3 → 1.2.4
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/README.md +2 -6
- package/package.json +10 -12
package/README.md
CHANGED
|
@@ -24,12 +24,8 @@ Install `badger` using your favourite package manager.
|
|
|
24
24
|
|
|
25
25
|
## Manual
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
## API Documentation
|
|
30
|
-
|
|
31
|
-
Read the [API documentation](https://abw.github.io/badger-js/docs/) for further information
|
|
32
|
-
about the classes, methods and utility functions provided.
|
|
27
|
+
See the [website](https://abw.github.io/badger-js/) for documentation and
|
|
28
|
+
examples.
|
|
33
29
|
|
|
34
30
|
## Author
|
|
35
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abw/badger",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "Component based framework and utility modules",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/badger.cjs.js",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"bin": {
|
|
20
20
|
"badger-watch": "./dist/bin/watch.js"
|
|
21
21
|
},
|
|
22
|
+
"homepage": "https://abw.github.io/badger-js",
|
|
22
23
|
"repository": {
|
|
23
24
|
"type": "git",
|
|
24
25
|
"url": "git+https://github.com/abw/badger-js.git"
|
|
@@ -33,24 +34,20 @@
|
|
|
33
34
|
"utility"
|
|
34
35
|
],
|
|
35
36
|
"devDependencies": {
|
|
36
|
-
"@itsjamie/esdoc-cli": "^0.5.0",
|
|
37
|
-
"@itsjamie/esdoc-core": "^0.5.0",
|
|
38
|
-
"@itsjamie/esdoc-importpath-plugin": "^0.5.0",
|
|
39
|
-
"@itsjamie/esdoc-inject-style-plugin": "^0.5.0",
|
|
40
|
-
"@itsjamie/esdoc-standard-plugin": "^0.5.0",
|
|
41
37
|
"@rollup/plugin-commonjs": "^24.1.0",
|
|
42
38
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
43
39
|
"@rollup/plugin-terser": "^0.4.4",
|
|
44
40
|
"ava": "^5.3.1",
|
|
45
41
|
"eslint": "^8.55.0",
|
|
46
42
|
"rollup": "^3.29.4",
|
|
47
|
-
"rollup-plugin-copy": "^3.5.0"
|
|
43
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
44
|
+
"vitepress": "1.0.0-rc.44"
|
|
48
45
|
},
|
|
49
46
|
"dependencies": {
|
|
50
47
|
"@abw/badger-codecs": "^1.0.3",
|
|
51
|
-
"@abw/badger-filesystem": "^1.0.
|
|
52
|
-
"@abw/badger-timestamp": "^1.0.
|
|
53
|
-
"@abw/badger-utils": "^1.0.
|
|
48
|
+
"@abw/badger-filesystem": "^1.0.6",
|
|
49
|
+
"@abw/badger-timestamp": "^1.0.5",
|
|
50
|
+
"@abw/badger-utils": "^1.0.24",
|
|
54
51
|
"chokidar": "^3.5.3",
|
|
55
52
|
"commander": "^11.1.0",
|
|
56
53
|
"dotenv": "^16.3.1",
|
|
@@ -61,8 +58,9 @@
|
|
|
61
58
|
"build": "rollup -c",
|
|
62
59
|
"dev": "rollup -c -w",
|
|
63
60
|
"lint": "eslint 'src/**/*'",
|
|
64
|
-
"docs:
|
|
65
|
-
"docs:
|
|
61
|
+
"docs:dev": "vitepress dev website",
|
|
62
|
+
"docs:build": "vitepress build website",
|
|
63
|
+
"docs:preview": "vitepress preview website",
|
|
66
64
|
"test": "ava --serial",
|
|
67
65
|
"pretest": "pnpm run build"
|
|
68
66
|
}
|