nivii 0.3.0 → 0.3.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/dist/cli.js CHANGED
@@ -92,7 +92,7 @@ cli
92
92
  .action(async (slug) => {
93
93
  await runAnalytics(slug);
94
94
  });
95
- cli.version('0.2.0');
95
+ cli.version('0.3.0');
96
96
  // ─── Show help when no command given ─────────────────────────────────────────
97
97
  cli.parse(process.argv, { run: false });
98
98
  if (!cli.matchedCommand) {
@@ -44,7 +44,7 @@ export function showWelcome() {
44
44
  printSnow();
45
45
  console.log('');
46
46
  console.log(' ' + orange('⚡') + ' ' + cyan('Share any project in seconds. No accounts. No config.'));
47
- console.log(' ' + gray('v0.1.8 · nivii.app'));
47
+ console.log(' ' + gray('v0.3.0 · nivii.app'));
48
48
  console.log('');
49
49
  console.log(' ' + gray('─'.repeat(46)));
50
50
  console.log(' ' + cyan('Quick start:') + ' ' + white('nivii share'));
@@ -65,7 +65,7 @@ export function showHelp() {
65
65
  printSnow();
66
66
  console.log('');
67
67
  console.log(' ' + orange('⚡') + ' ' + cyan('Share any project in seconds. No accounts. No config.'));
68
- console.log(' ' + gray('v0.1.8 · nivii.app'));
68
+ console.log(' ' + gray('v0.3.0 · nivii.app'));
69
69
  console.log('');
70
70
  console.log(' ' + gray('─'.repeat(50)));
71
71
  console.log(' ' + purple.bold('Commands'));
@@ -89,7 +89,7 @@ export function showBanner() {
89
89
  console.log('');
90
90
  console.log(' ' + orange('⚡') + ' ' +
91
91
  chalk.hex('#A78BFA').bold('NIVII') + ' ' +
92
- gray('v0.1.8'));
92
+ gray('v0.3.0'));
93
93
  console.log('');
94
94
  }
95
95
  //# sourceMappingURL=welcome.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nivii",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "⚡ The fastest, most beautiful way to share any local project via a live URL",
5
5
  "type": "module",
6
6
  "bin": {
@@ -48,4 +48,4 @@
48
48
  "bugs": {
49
49
  "url": "mailto:contact@nivii.app"
50
50
  }
51
- }
51
+ }
package/src/cli.ts CHANGED
@@ -99,7 +99,7 @@ cli
99
99
  await runAnalytics(slug);
100
100
  });
101
101
 
102
- cli.version('0.1.8');
102
+ cli.version('0.3.0');
103
103
 
104
104
  // ─── Show help when no command given ─────────────────────────────────────────
105
105
  cli.parse(process.argv, { run: false });
package/src/ui/welcome.ts CHANGED
@@ -50,7 +50,7 @@ export function showWelcome(): void {
50
50
  printSnow();
51
51
  console.log('');
52
52
  console.log(' ' + orange('⚡') + ' ' + cyan('Share any project in seconds. No accounts. No config.'));
53
- console.log(' ' + gray('v0.1.8 · nivii.app'));
53
+ console.log(' ' + gray('v0.3.0 · nivii.app'));
54
54
  console.log('');
55
55
  console.log(' ' + gray('─'.repeat(46)));
56
56
  console.log(' ' + cyan('Quick start:') + ' ' + white('nivii share'));
@@ -72,7 +72,7 @@ export function showHelp(): void {
72
72
  printSnow();
73
73
  console.log('');
74
74
  console.log(' ' + orange('⚡') + ' ' + cyan('Share any project in seconds. No accounts. No config.'));
75
- console.log(' ' + gray('v0.1.8 · nivii.app'));
75
+ console.log(' ' + gray('v0.3.0 · nivii.app'));
76
76
  console.log('');
77
77
  console.log(' ' + gray('─'.repeat(50)));
78
78
  console.log(' ' + purple.bold('Commands'));
@@ -98,7 +98,7 @@ export function showBanner(): void {
98
98
  console.log(
99
99
  ' ' + orange('⚡') + ' ' +
100
100
  chalk.hex('#A78BFA').bold('NIVII') + ' ' +
101
- gray('v0.1.8')
101
+ gray('v0.3.0')
102
102
  );
103
103
  console.log('');
104
104
  }