denvig 0.1.0 → 0.1.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.
Files changed (3) hide show
  1. package/README.md +26 -14
  2. package/dist/denvig +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,25 +1,12 @@
1
- # Denvig - Developer Environment Invigorator.
1
+ # Denvig - Developer Environment Invigorator
2
2
 
3
3
  Denvig is a concept of simplifying development environments across multiple languages and frameworks by creating a small
4
4
  set of consistent wrappers to avoid muscle memory and configuration headaches.
5
5
 
6
6
 
7
7
 
8
- ## Goals
9
-
10
- - [ ] CLI tool to simplify environment setup
11
- - [ ] YAML configuration at ~/.denvig.yml
12
- - [ ] Per project configuration via ./denvig.yml
13
- - [ ] Consistent API for all languages/frameworks
14
-
15
-
16
-
17
8
  ## Installation
18
9
 
19
- ### Binary
20
-
21
- Prebuilt binaries can be downloaded from the [releases page](https://github.com/marcqualie/denvig/releases).
22
-
23
10
 
24
11
  ### NPM
25
12
 
@@ -29,6 +16,12 @@ You can install the CLI tool globally using npm:
29
16
  npm install -g denvig
30
17
  ```
31
18
 
19
+
20
+ ### Binary
21
+
22
+ Prebuilt binaries can be downloaded from the [releases page](https://github.com/marcqualie/denvig/releases).
23
+
24
+
32
25
  After installation, the `denvig` command will be available in your terminal.
33
26
 
34
27
 
@@ -48,6 +41,16 @@ denvig run test
48
41
  denvig run dev
49
42
  ```
50
43
 
44
+ Some commands are common to many frameworks so they have root aliases for convenience:
45
+
46
+ ```shell
47
+ denvig build
48
+ denvig test
49
+ denvig install
50
+ denvig lint
51
+ denvig outdated
52
+ ```
53
+
51
54
 
52
55
 
53
56
  ## Languages / Frameworks
@@ -62,6 +65,15 @@ can be supported by using the per project configs.
62
65
 
63
66
 
64
67
 
68
+ ## Goals
69
+
70
+ - [x] CLI tool to simplify environment setup
71
+ - [x] YAML configuration at ~/.denvig.yml
72
+ - [x] Per project configuration via ./.denvig.yml
73
+ - [x] Consistent API for all languages/frameworks
74
+
75
+
76
+
65
77
  ## Building from source
66
78
 
67
79
  You can build a fresh binary from source instead of using the provided methods above
package/dist/denvig CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "denvig",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "license": "MIT",
5
5
  "description": "A CLI tool to consistently manage cross-discipline projects",
6
6
  "bin": {