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 CHANGED
@@ -1,3 +1,8 @@
1
+ # v0.6.1
2
+
3
+ - Dependencies bump
4
+ - Enforce lockfile on publication (npm shrinkwrap)
5
+
1
6
  # v0.6.0
2
7
 
3
8
  - Allow passing a URL as the website name
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 package-lock.json
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.0");
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.")