neonctl 1.21.2 → 1.22.0
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/callback.html +9 -1
- package/commands/branches.js +1 -1
- package/index.js +1 -2
- package/package.json +1 -1
package/callback.html
CHANGED
|
@@ -14,6 +14,14 @@ body, html {
|
|
|
14
14
|
flex-direction: column;
|
|
15
15
|
justify-content: center;
|
|
16
16
|
align-items: center;
|
|
17
|
+
background-color: #ffffff;
|
|
18
|
+
color: #2d374c;
|
|
19
|
+
}
|
|
20
|
+
@media (prefers-color-scheme: dark) {
|
|
21
|
+
body, html {
|
|
22
|
+
background-color: #191919;
|
|
23
|
+
color: #bfbfbf;
|
|
24
|
+
}
|
|
17
25
|
}
|
|
18
26
|
.logo {
|
|
19
27
|
display: inline-block;
|
|
@@ -32,6 +40,6 @@ svg {
|
|
|
32
40
|
</div>
|
|
33
41
|
<h1>Thank you for using Neon</h1>
|
|
34
42
|
<p>
|
|
35
|
-
You may close
|
|
43
|
+
You may close this page now
|
|
36
44
|
</p>
|
|
37
45
|
</body>
|
package/commands/branches.js
CHANGED
package/index.js
CHANGED
|
@@ -21,7 +21,6 @@ import { fillInArgs } from './utils/middlewares.js';
|
|
|
21
21
|
import pkg from './pkg.js';
|
|
22
22
|
import commands from './commands/index.js';
|
|
23
23
|
import { analyticsMiddleware, sendError } from './analytics.js';
|
|
24
|
-
import { isCi } from './env.js';
|
|
25
24
|
import { isAxiosError } from 'axios';
|
|
26
25
|
import { matchErrorCode } from './errors.js';
|
|
27
26
|
import { showHelp } from './help.js';
|
|
@@ -92,7 +91,7 @@ builder = builder
|
|
|
92
91
|
describe: 'Manage analytics. Example: --no-analytics, --analytics false',
|
|
93
92
|
group: 'Global options:',
|
|
94
93
|
type: 'boolean',
|
|
95
|
-
default:
|
|
94
|
+
default: true
|
|
96
95
|
})
|
|
97
96
|
.middleware(analyticsMiddleware, true)
|
|
98
97
|
.group('version', 'Global options:')
|