vovk 0.2.3-beta.110 → 0.2.3-beta.111

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.
@@ -9,7 +9,7 @@ function toCamelCase(str) {
9
9
  /** @typedef {'dev' | 'build' | 'generate' | 'help'} Command */
10
10
  function parseCommandLineArgs() {
11
11
  const args = process.argv.slice(2); // Slice off node and script path
12
- let command = /** @type {Command} */ 'EMPTY';
12
+ let command = /** @type {Command} */ null;
13
13
  /** @type {Flags} */
14
14
  const flags = {};
15
15
  /** @type {string[]} */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk",
3
- "version": "0.2.3-beta.110",
3
+ "version": "0.2.3-beta.111",
4
4
  "description": "Structural add-on for Next.js",
5
5
  "bin": "./cli/index.js",
6
6
  "scripts": {