gaztec 0.0.5 → 0.0.6
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 +8 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -6,6 +6,14 @@
|
|
|
6
6
|
npm i -g gaztec
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
+
You can also install it locally and use it in your project:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm i gaztec -D
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**WARNING**: if you use `pnpm` or `yarn`, you must use `npx gaztec` instead of `pnpm gaztec` or `yarn gaztec`.
|
|
16
|
+
|
|
9
17
|
## Use in your project
|
|
10
18
|
|
|
11
19
|
```sh
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gaztec",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Aztec version manager",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/nemi-fi/gaztec.git"
|
|
9
|
+
},
|
|
6
10
|
"bin": {
|
|
7
11
|
"gaztec-install": "./gaztec-install",
|
|
8
12
|
"gaztec": "./gaztec",
|