dxfl 0.6.0 → 0.6.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/CHANGELOG.md +5 -0
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/npm-shrinkwrap.json +2218 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -220,7 +220,7 @@ Then to publish a release:
|
|
|
220
220
|
vim CHANGELOG.md # update the version and its content in this file
|
|
221
221
|
vim package.json # update the version in this file
|
|
222
222
|
vim index.ts # update the version in this file
|
|
223
|
-
npm install # update the version in the
|
|
223
|
+
npm install # update the version in the lock file
|
|
224
224
|
npm run prettier # fix potential coding style problem
|
|
225
225
|
git commit -a -m 'set version 0.1.5' # commit your change
|
|
226
226
|
git push # send update
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { deploy } from "./deploy.js";
|
|
|
6
6
|
import { empty } from "./empty.js";
|
|
7
7
|
import { list } from "./vhosts.js";
|
|
8
8
|
import { inspect } from "./inspect.js";
|
|
9
|
-
program.name("dxfl").description("Deuxfleurs CLI tool").version("0.6.
|
|
9
|
+
program.name("dxfl").description("Deuxfleurs CLI tool").version("0.6.1");
|
|
10
10
|
program
|
|
11
11
|
.command("login")
|
|
12
12
|
.description("Link your Deuxfleurs account with this tool.")
|