nivii 0.1.2 → 0.1.4

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/dist/dist/cli.js CHANGED
@@ -93,7 +93,7 @@ cli
93
93
  await runAnalytics(slug);
94
94
  });
95
95
  cli.help();
96
- cli.version('0.1.0');
96
+ cli.version('0.1.3');
97
97
  cli.parse();
98
98
  function timeSince(date) {
99
99
  const seconds = Math.floor((Date.now() - date.getTime()) / 1000);
package/dist/src/cli.js CHANGED
@@ -93,7 +93,7 @@ cli
93
93
  await runAnalytics(slug);
94
94
  });
95
95
  cli.help();
96
- cli.version('0.1.0');
96
+ cli.version('0.1.3');
97
97
  cli.parse();
98
98
  function timeSince(date) {
99
99
  const seconds = Math.floor((Date.now() - date.getTime()) / 1000);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nivii",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "⚡ The fastest, most beautiful way to share any local project via a live URL",
5
5
  "type": "module",
6
6
  "bin": {
package/src/src/cli.ts CHANGED
@@ -100,7 +100,7 @@ cli
100
100
  });
101
101
 
102
102
  cli.help();
103
- cli.version('0.1.0');
103
+ cli.version('0.1.3');
104
104
  cli.parse();
105
105
 
106
106
  function timeSince(date: Date): string {