@nsxbet/admin-sdk 0.8.0 → 0.8.1
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.
|
@@ -84,7 +84,9 @@ export interface AdminModuleManifest {
|
|
|
84
84
|
owners?: ModuleOwners;
|
|
85
85
|
/**
|
|
86
86
|
* Semver of @nsxbet/admin-sdk the module was built against.
|
|
87
|
-
* Injected at build time by `defineModuleConfig
|
|
87
|
+
* Injected at build time by `defineModuleConfig`.
|
|
88
|
+
* Source `admin.module.json` values are overwritten in `module.manifest.json`,
|
|
89
|
+
* and the registry refreshes/restores this value on republish and rollback.
|
|
88
90
|
*/
|
|
89
91
|
sdkVersion?: string;
|
|
90
92
|
}
|
package/dist/sdk-version.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
* Semver of @nsxbet/admin-sdk (synced from package.json by scripts/write-sdk-version.mjs).
|
|
3
3
|
* Do not edit manually — run `node scripts/write-sdk-version.mjs` after version bumps.
|
|
4
4
|
*/
|
|
5
|
-
export const SDK_PACKAGE_VERSION = "0.8.
|
|
5
|
+
export const SDK_PACKAGE_VERSION = "0.8.1";
|
package/dist/vite/plugins.js
CHANGED
|
@@ -24,9 +24,9 @@ export function generateModuleManifestPlugin(options = {}) {
|
|
|
24
24
|
return;
|
|
25
25
|
const metadata = JSON.parse(readFileSync(manifestPath, "utf-8"));
|
|
26
26
|
const manifest = {
|
|
27
|
+
...metadata,
|
|
27
28
|
entry: spaEntry,
|
|
28
29
|
sdkVersion: SDK_PACKAGE_VERSION,
|
|
29
|
-
...metadata,
|
|
30
30
|
};
|
|
31
31
|
const outDir = outputOptions.dir || "dist";
|
|
32
32
|
const outputPath = join(outDir, "module.manifest.json");
|