@settlemint/sdk-cli 1.1.4-prf20ef7ef → 1.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/cli.js +8 -9
- package/dist/cli.js.map +3 -3
- package/package.json +3 -3
package/dist/cli.js
CHANGED
@@ -274462,7 +274462,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
274462
274462
|
var package_default = {
|
274463
274463
|
name: "@settlemint/sdk-cli",
|
274464
274464
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
274465
|
-
version: "1.1.4
|
274465
|
+
version: "1.1.4",
|
274466
274466
|
type: "module",
|
274467
274467
|
private: false,
|
274468
274468
|
license: "FSL-1.1-MIT",
|
@@ -274510,8 +274510,8 @@ var package_default = {
|
|
274510
274510
|
"@inquirer/input": "4.1.5",
|
274511
274511
|
"@inquirer/password": "4.0.8",
|
274512
274512
|
"@inquirer/select": "4.0.8",
|
274513
|
-
"@settlemint/sdk-js": "1.1.4
|
274514
|
-
"@settlemint/sdk-utils": "1.1.4
|
274513
|
+
"@settlemint/sdk-js": "1.1.4",
|
274514
|
+
"@settlemint/sdk-utils": "1.1.4",
|
274515
274515
|
"@types/node": "22.13.1",
|
274516
274516
|
"@types/semver": "7.5.8",
|
274517
274517
|
"@types/which": "3.0.4",
|
@@ -279771,7 +279771,7 @@ async function codegenTsconfig(env2, thegraphSubgraphNames) {
|
|
279771
279771
|
tsconfig.config.compilerOptions.plugins = [];
|
279772
279772
|
}
|
279773
279773
|
const tadaConfig = {
|
279774
|
-
name: "
|
279774
|
+
name: "@0no-co/graphqlsp",
|
279775
279775
|
trackFieldUsage: false,
|
279776
279776
|
schemas: [
|
279777
279777
|
...hasura ? [
|
@@ -279809,10 +279809,9 @@ async function codegenTsconfig(env2, thegraphSubgraphNames) {
|
|
279809
279809
|
] : []
|
279810
279810
|
]
|
279811
279811
|
};
|
279812
|
-
const
|
279813
|
-
|
279814
|
-
|
279815
|
-
tsconfig.config.compilerOptions.plugins = tsconfig.config.compilerOptions.plugins.filter((plugin) => !isGraphqlTadaPlugin(plugin));
|
279812
|
+
const graphqlspPlugin = tsconfig.config.compilerOptions.plugins.find((plugin) => plugin.name === "@0no-co/graphqlsp");
|
279813
|
+
if (graphqlspPlugin) {
|
279814
|
+
tsconfig.config.compilerOptions.plugins = tsconfig.config.compilerOptions.plugins.filter((plugin) => plugin.name !== "@0no-co/graphqlsp");
|
279816
279815
|
}
|
279817
279816
|
tsconfig.config.compilerOptions.plugins.push(tadaConfig);
|
279818
279817
|
if (!tsconfig.config.compilerOptions.paths) {
|
@@ -285580,4 +285579,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
285580
285579
|
// src/cli.ts
|
285581
285580
|
sdkCliCommand();
|
285582
285581
|
|
285583
|
-
//# debugId=
|
285582
|
+
//# debugId=8DDAFF959080C66764756E2164756E21
|