Fix vite config
This commit is contained in:
parent
6298684391
commit
f56891c118
47
apps/cli/bin/index.js
Normal file → Executable file
47
apps/cli/bin/index.js
Normal file → Executable file
@ -1,3 +1,4 @@
|
|||||||
|
#!/nix/store/bmmjbvb8hishfrg78ygjlynpq3ikpl39-nodejs-20.15.1/bin/node
|
||||||
import process$1 from "node:process";
|
import process$1 from "node:process";
|
||||||
import os from "node:os";
|
import os from "node:os";
|
||||||
import tty from "node:tty";
|
import tty from "node:tty";
|
||||||
@ -400,7 +401,7 @@ for (const model of usedModels) {
|
|||||||
styles[model] = {
|
styles[model] = {
|
||||||
get() {
|
get() {
|
||||||
const { level } = this;
|
const { level } = this;
|
||||||
return function(...arguments_) {
|
return function (...arguments_) {
|
||||||
const styler = createStyler(getModelAnsi(model, levelMapping[level], "color", ...arguments_), ansiStyles.color.close, this[STYLER]);
|
const styler = createStyler(getModelAnsi(model, levelMapping[level], "color", ...arguments_), ansiStyles.color.close, this[STYLER]);
|
||||||
return createBuilder(this, styler, this[IS_EMPTY]);
|
return createBuilder(this, styler, this[IS_EMPTY]);
|
||||||
};
|
};
|
||||||
@ -410,7 +411,7 @@ for (const model of usedModels) {
|
|||||||
styles[bgModel] = {
|
styles[bgModel] = {
|
||||||
get() {
|
get() {
|
||||||
const { level } = this;
|
const { level } = this;
|
||||||
return function(...arguments_) {
|
return function (...arguments_) {
|
||||||
const styler = createStyler(getModelAnsi(model, levelMapping[level], "bgColor", ...arguments_), ansiStyles.bgColor.close, this[STYLER]);
|
const styler = createStyler(getModelAnsi(model, levelMapping[level], "bgColor", ...arguments_), ansiStyles.bgColor.close, this[STYLER]);
|
||||||
return createBuilder(this, styler, this[IS_EMPTY]);
|
return createBuilder(this, styler, this[IS_EMPTY]);
|
||||||
};
|
};
|
||||||
@ -840,7 +841,7 @@ function isTRPCClientError(cause) {
|
|||||||
* @deprecated
|
* @deprecated
|
||||||
* Delete in next major
|
* Delete in next major
|
||||||
*/
|
*/
|
||||||
cause instanceof Error && cause.name === "TRPCClientError";
|
cause instanceof Error && cause.name === "TRPCClientError";
|
||||||
}
|
}
|
||||||
function isTRPCErrorResponse(obj) {
|
function isTRPCErrorResponse(obj) {
|
||||||
return isObject(obj) && isObject(obj.error) && typeof obj.error.code === "number" && typeof obj.error.message === "string";
|
return isObject(obj) && isObject(obj.error) && typeof obj.error.code === "number" && typeof obj.error.message === "string";
|
||||||
@ -1395,15 +1396,17 @@ function createTRPCProxyClient(opts) {
|
|||||||
function getAPIClient() {
|
function getAPIClient() {
|
||||||
const globals = getGlobalOptions();
|
const globals = getGlobalOptions();
|
||||||
return createTRPCProxyClient({
|
return createTRPCProxyClient({
|
||||||
links: [httpBatchLink({
|
links: [
|
||||||
url: `${globals.serverAddr}/api/trpc`,
|
httpBatchLink({
|
||||||
maxURLLength: 14e3,
|
url: `${globals.serverAddr}/api/trpc`,
|
||||||
headers() {
|
maxURLLength: 14e3,
|
||||||
return {
|
headers() {
|
||||||
authorization: `Bearer ${globals.apiKey}`
|
return {
|
||||||
};
|
authorization: `Bearer ${globals.apiKey}`
|
||||||
}
|
};
|
||||||
})]
|
}
|
||||||
|
})
|
||||||
|
]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function getDefaultExportFromCjs(x) {
|
function getDefaultExportFromCjs(x) {
|
||||||
@ -1680,7 +1683,7 @@ let Help$3 = class Help {
|
|||||||
subcommandTerm(cmd) {
|
subcommandTerm(cmd) {
|
||||||
const args = cmd.registeredArguments.map((arg) => humanReadableArgName$1(arg)).join(" ");
|
const args = cmd.registeredArguments.map((arg) => humanReadableArgName$1(arg)).join(" ");
|
||||||
return cmd._name + (cmd._aliases[0] ? "|" + cmd._aliases[0] : "") + (cmd.options.length ? " [options]" : "") + // simplistic check for non-help option
|
return cmd._name + (cmd._aliases[0] ? "|" + cmd._aliases[0] : "") + (cmd.options.length ? " [options]" : "") + // simplistic check for non-help option
|
||||||
(args ? " " + args : "");
|
(args ? " " + args : "");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Get the option term to show in the list of options.
|
* Get the option term to show in the list of options.
|
||||||
@ -4371,7 +4374,7 @@ commander.Help = Help$1;
|
|||||||
commander.CommanderError = CommanderError$1;
|
commander.CommanderError = CommanderError$1;
|
||||||
commander.InvalidArgumentError = InvalidArgumentError$1;
|
commander.InvalidArgumentError = InvalidArgumentError$1;
|
||||||
commander.InvalidOptionArgumentError = InvalidArgumentError$1;
|
commander.InvalidOptionArgumentError = InvalidArgumentError$1;
|
||||||
(function(module, exports) {
|
(function (module, exports) {
|
||||||
const commander$1 = commander;
|
const commander$1 = commander;
|
||||||
exports = module.exports = {};
|
exports = module.exports = {};
|
||||||
exports.program = new commander$1.Command();
|
exports.program = new commander$1.Command();
|
||||||
@ -4408,11 +4411,23 @@ helloWorldCmd.command("test").description("does something specific I guess").act
|
|||||||
try {
|
try {
|
||||||
console.dir(api);
|
console.dir(api);
|
||||||
} catch (error2) {
|
} catch (error2) {
|
||||||
printErrorMessageWithReason("Something went horribly wrong", error2);
|
printErrorMessageWithReason(
|
||||||
|
"Something went horribly wrong",
|
||||||
|
error2
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const __vite_import_meta_env__ = { "BASE_URL": "/", "CLI_VERSION": "0.0.1", "DEV": false, "MODE": "production", "PROD": true, "SSR": true };
|
const __vite_import_meta_env__ = { "BASE_URL": "/", "CLI_VERSION": "0.0.1", "DEV": false, "MODE": "production", "PROD": true, "SSR": true };
|
||||||
const program = new Command2().name("lifetracker").description("A CLI interface to interact with my lifetracker api").addOption(new Option2("--api-key <key>", "the API key to interact with the API").makeOptionMandatory(true).env("LIFETRACKER_API_KEY")).addOption(new Option2("--server-addr <addr>", "the address of the server to connect to").makeOptionMandatory(true).env("LIFETRACKER_SERVER_ADDR")).addOption(new Option2("--json", "to output the result as JSON")).version(__vite_import_meta_env__ && "CLI_VERSION" in __vite_import_meta_env__ ? "0.0.1" : "0.0.0");
|
const program = new Command2().name("lifetracker").description("A CLI interface to interact with my lifetracker api").addOption(
|
||||||
|
new Option2("--api-key <key>", "the API key to interact with the API").makeOptionMandatory(true).env("LIFETRACKER_API_KEY")
|
||||||
|
).addOption(
|
||||||
|
new Option2(
|
||||||
|
"--server-addr <addr>",
|
||||||
|
"the address of the server to connect to"
|
||||||
|
).makeOptionMandatory(true).env("LIFETRACKER_SERVER_ADDR")
|
||||||
|
).addOption(new Option2("--json", "to output the result as JSON")).version(
|
||||||
|
__vite_import_meta_env__ && "CLI_VERSION" in __vite_import_meta_env__ ? "0.0.1" : "0.0.0"
|
||||||
|
);
|
||||||
program.addCommand(helloWorldCmd);
|
program.addCommand(helloWorldCmd);
|
||||||
setGlobalOptions(program.opts());
|
setGlobalOptions(program.opts());
|
||||||
program.parse();
|
program.parse();
|
||||||
|
|||||||
@ -5,13 +5,6 @@
|
|||||||
|
|
||||||
import { defineConfig } from "vite";
|
import { defineConfig } from "vite";
|
||||||
import tsconfigPaths from "vite-tsconfig-paths";
|
import tsconfigPaths from "vite-tsconfig-paths";
|
||||||
import viteTS from "vite-plugin-ts";
|
|
||||||
|
|
||||||
const debugTsconfigPaths = tsconfigPaths({
|
|
||||||
loose: true,
|
|
||||||
root: ".",
|
|
||||||
ignoreConfigErrors: true
|
|
||||||
});
|
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
build: {
|
build: {
|
||||||
@ -27,7 +20,7 @@ export default defineConfig({
|
|||||||
// bundle everything except for Node built-ins
|
// bundle everything except for Node built-ins
|
||||||
noExternal: /^(?!node:).*$/,
|
noExternal: /^(?!node:).*$/,
|
||||||
},
|
},
|
||||||
plugins: [debugTsconfigPaths, viteTS()],
|
plugins: [tsconfigPaths()],
|
||||||
define: {
|
define: {
|
||||||
"import.meta.env.CLI_VERSION": JSON.stringify(
|
"import.meta.env.CLI_VERSION": JSON.stringify(
|
||||||
process.env.npm_package_version,
|
process.env.npm_package_version,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user