@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.
- package/bin/app/build/build-library.js +0 -1
- package/bin/app/config/cfg-core.js +1 -1
- package/bin/app/config/cfg-create.js +1 -3
- package/bin/app/config/cfg-gen-cfg.js +1 -1
- package/bin/app/config/cfg-reltypes-content.d.ts +3 -0
- package/bin/app/config/cfg-reltypes-content.js +1139 -0
- package/bin/app/config/cfg-reltypes-utils.d.ts +2 -0
- package/bin/app/config/cfg-reltypes-utils.js +50 -0
- package/bin/app/config/constants.d.ts +1 -1
- package/bin/app/config/constants.js +1 -1
- package/bin/app/config/prepare.js +2 -0
- package/bin/app/init/use-template/cp-modules/compose-env-file/cef-impl.js +1 -1
- package/bin/app/mrse/cmd.js +4 -4
- package/bin/app/providers/better-t-stack/types.d.ts +9 -9
- package/bin/app/providers/reliverse-stack/rs-impl.d.ts +2 -2
- package/bin/app/utils/agg/agg-3.js +2 -2
- package/bin/app/utils/mrseHelpers.js +1 -1
- package/bin/dler.js +2 -10
- package/package.json +27 -27
|
@@ -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, "
|
|
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 = "
|
|
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/
|
|
106
|
+
customPathToTypes: "./src-ts/app/types/mod"
|
|
107
107
|
} : {},
|
|
108
108
|
overrides: {}
|
|
109
109
|
});
|