@reliverse/dler 1.7.93 → 1.7.94

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.
@@ -93,7 +93,6 @@ async function library_buildJsrDist(options) {
93
93
  targetType,
94
94
  builder: distJsrBuilder,
95
95
  libSourceDir: libSourceDirResolved,
96
- // e.g., /abs/path/to/project/src/libs/sdk
97
96
  entryFilePath: bundlerEntryPoint,
98
97
  outputDirRoot: outputDirRootResolved,
99
98
  outputDirBin: outputDirBinResolved,
@@ -14,7 +14,7 @@ export async function getOrCreateRseConfig({
14
14
  customTsconfigPath
15
15
  }) {
16
16
  const githubUsername = UNKNOWN_VALUE;
17
- const mrseFolderPath = path.join(projectPath, ".config", "mrse");
17
+ const mrseFolderPath = path.join(projectPath, "mrse");
18
18
  const results = [];
19
19
  if (await fs.pathExists(mrseFolderPath)) {
20
20
  const dirItems = await fs.readdir(mrseFolderPath);
@@ -80,10 +80,8 @@ export async function writeRseConfig(configPath, config, isDev, skipInstallPromp
80
80
  let importPath;
81
81
  if (customPathToTypes) {
82
82
  importPath = customPathToTypes;
83
- } else if (isDev) {
84
- importPath = "~/libs/cfg/cfg-impl/cfg-define";
85
83
  } else {
86
- importPath = "@reliverse/rse-cfg";
84
+ importPath = "./reltypes";
87
85
  }
88
86
  const fileContent2 = `import { defineConfig } from "${importPath}";
89
87
  export default defineConfig(${objectLiteralWithComments});
@@ -103,7 +103,7 @@ export async function generateConfigFiles(projectPath, overwrite, projectName, d
103
103
  isDev,
104
104
  configInfo,
105
105
  ...isDev && configInfo?.isTS ? {
106
- customPathToTypes: "./src/libs/sdk/sdk-mod"
106
+ customPathToTypes: "./src-ts/app/types/mod"
107
107
  } : {},
108
108
  overrides: {}
109
109
  });
@@ -0,0 +1,3 @@
1
+ export declare function generateReltypesContent({ lastUpdated }: {
2
+ lastUpdated: string;
3
+ }): string;