dxfl 0.1.6 → 0.1.7
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 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -52,6 +52,8 @@ Then to publish a release:
|
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
54
|
vim package.json # update the version in this file
|
|
55
|
+
vim index.ts # update the version in this file
|
|
56
|
+
npm install # update the version in the package-lock.json
|
|
55
57
|
git commit -a -m 'set version 0.1.5' # commit your change
|
|
56
58
|
git push # send update
|
|
57
59
|
git tag -m 'v0.1.5' v0.1.5 # create associated tag
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { vhostsList } from "./vhosts.js";
|
|
|
6
6
|
program
|
|
7
7
|
.name('dxfl')
|
|
8
8
|
.description('Deuxfleurs CLI tool')
|
|
9
|
-
.version('0.1.
|
|
9
|
+
.version('0.1.7');
|
|
10
10
|
program.command('login')
|
|
11
11
|
.description('Link your Deuxfleurs account with this tool.')
|
|
12
12
|
.argument('<username>', 'your account username')
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dxfl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
6
6
|
"author": "Deuxfleurs Team <coucou@deuxfleurs.fr>",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/main.js",
|
|
9
9
|
"bin": {
|
|
10
|
-
"dxfl": "
|
|
10
|
+
"dxfl": "dist/index.js"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepare": "npx tsc"
|