@bemoje/devkit 1.2.0 → 1.2.1
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/package.json
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bemoje/devkit",
|
|
3
3
|
"description": "Development utilities for the monorepo.",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.1",
|
|
5
5
|
"packageManager": "yarn@4.3.1",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"
|
|
8
|
-
"files": [
|
|
9
|
-
"dist/"
|
|
10
|
-
],
|
|
7
|
+
"scripts": [],
|
|
11
8
|
"dependencies": {
|
|
12
9
|
"esbuild": "^0.23.0"
|
|
13
10
|
},
|
|
11
|
+
"bin": "./cli.mjs",
|
|
12
|
+
"files": [
|
|
13
|
+
"cli.mjs",
|
|
14
|
+
"devkit.cjs",
|
|
15
|
+
"devkit.cjs.map"
|
|
16
|
+
],
|
|
14
17
|
"publishConfig": {
|
|
15
18
|
"access": "public"
|
|
16
19
|
},
|
|
@@ -19,8 +22,10 @@
|
|
|
19
22
|
"url": "https://github.com/bemoje/mono.git",
|
|
20
23
|
"directory": "apps/devkit"
|
|
21
24
|
},
|
|
22
|
-
"
|
|
23
|
-
"
|
|
25
|
+
"author": {
|
|
26
|
+
"name": "Benjamin Moller Jensen",
|
|
27
|
+
"email": "bemoje@bemoje.net",
|
|
28
|
+
"url": "https://github.com/bemoje/"
|
|
24
29
|
},
|
|
25
|
-
"
|
|
26
|
-
}
|
|
30
|
+
"license": "MIT"
|
|
31
|
+
}
|
package/README.md
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# devkit
|
|
2
|
-
|
|
3
|
-
Development utilities for the monorepo.
|
|
4
|
-
|
|
5
|
-
**Warning**: Private package. Do not expect it to work. Use at own risk.
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
```sh
|
|
10
|
-
# install
|
|
11
|
-
npm install devkit --save-dev
|
|
12
|
-
|
|
13
|
-
# uninstall
|
|
14
|
-
npm uninstall devkit --save-dev
|
|
15
|
-
|
|
16
|
-
# help
|
|
17
|
-
devkit --help
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Help
|
|
21
|
-
|
|
22
|
-
```
|
|
23
|
-
Usage: devkit [options] [command]
|
|
24
|
-
|
|
25
|
-
Development utilities for the monorepo.
|
|
26
|
-
|
|
27
|
-
Options:
|
|
28
|
-
-V, --version output the version number
|
|
29
|
-
-h, --help display help for command
|
|
30
|
-
|
|
31
|
-
Commands:
|
|
32
|
-
libs|l
|
|
33
|
-
deps|d
|
|
34
|
-
config|c
|
|
35
|
-
imports|i
|
|
36
|
-
help [command] display help for command
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
## License
|
|
40
|
-
|
|
41
|
-
Released under the [MIT License](./LICENSE).
|