amai 0.0.13 → 0.0.14
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.cjs +3 -2
- package/dist/cli.js +3 -2
- package/dist/lib/daemon-entry.cjs +2 -1
- package/dist/lib/daemon-entry.js +2 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -2641,7 +2641,8 @@ async function setupDefaultSettings() {
|
|
|
2641
2641
|
async function installExtensions() {
|
|
2642
2642
|
const binPath = getCodeServerBin();
|
|
2643
2643
|
const extensions = [
|
|
2644
|
-
"castrogusttavo.min-theme"
|
|
2644
|
+
"castrogusttavo.min-theme",
|
|
2645
|
+
"sourcegraph.amp"
|
|
2645
2646
|
];
|
|
2646
2647
|
for (const ext of extensions) {
|
|
2647
2648
|
try {
|
|
@@ -2756,7 +2757,7 @@ function getDaemonPid() {
|
|
|
2756
2757
|
return null;
|
|
2757
2758
|
}
|
|
2758
2759
|
}
|
|
2759
|
-
var VERSION = "0.0.
|
|
2760
|
+
var VERSION = "0.0.14";
|
|
2760
2761
|
var PROJECT_DIR = process.cwd();
|
|
2761
2762
|
var LOGO = `
|
|
2762
2763
|
__ _ _ __ ___ __ _
|
package/dist/cli.js
CHANGED
|
@@ -2628,7 +2628,8 @@ async function setupDefaultSettings() {
|
|
|
2628
2628
|
async function installExtensions() {
|
|
2629
2629
|
const binPath = getCodeServerBin();
|
|
2630
2630
|
const extensions = [
|
|
2631
|
-
"castrogusttavo.min-theme"
|
|
2631
|
+
"castrogusttavo.min-theme",
|
|
2632
|
+
"sourcegraph.amp"
|
|
2632
2633
|
];
|
|
2633
2634
|
for (const ext of extensions) {
|
|
2634
2635
|
try {
|
|
@@ -2743,7 +2744,7 @@ function getDaemonPid() {
|
|
|
2743
2744
|
return null;
|
|
2744
2745
|
}
|
|
2745
2746
|
}
|
|
2746
|
-
var VERSION = "0.0.
|
|
2747
|
+
var VERSION = "0.0.14";
|
|
2747
2748
|
var PROJECT_DIR = process.cwd();
|
|
2748
2749
|
var LOGO = `
|
|
2749
2750
|
__ _ _ __ ___ __ _
|
|
@@ -2507,7 +2507,8 @@ async function setupDefaultSettings() {
|
|
|
2507
2507
|
async function installExtensions() {
|
|
2508
2508
|
const binPath = getCodeServerBin();
|
|
2509
2509
|
const extensions = [
|
|
2510
|
-
"castrogusttavo.min-theme"
|
|
2510
|
+
"castrogusttavo.min-theme",
|
|
2511
|
+
"sourcegraph.amp"
|
|
2511
2512
|
];
|
|
2512
2513
|
for (const ext of extensions) {
|
|
2513
2514
|
try {
|
package/dist/lib/daemon-entry.js
CHANGED
|
@@ -2496,7 +2496,8 @@ async function setupDefaultSettings() {
|
|
|
2496
2496
|
async function installExtensions() {
|
|
2497
2497
|
const binPath = getCodeServerBin();
|
|
2498
2498
|
const extensions = [
|
|
2499
|
-
"castrogusttavo.min-theme"
|
|
2499
|
+
"castrogusttavo.min-theme",
|
|
2500
|
+
"sourcegraph.amp"
|
|
2500
2501
|
];
|
|
2501
2502
|
for (const ext of extensions) {
|
|
2502
2503
|
try {
|