drizzle-kit 1.0.0-beta.23-0bbcaa2 → 1.0.0-beta.24
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.cjs +1 -1
- package/index.js +4 -2
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -232975,7 +232975,7 @@ init_views();
|
|
|
232975
232975
|
const version = async () => {
|
|
232976
232976
|
const { npmVersion } = await ormCoreVersions();
|
|
232977
232977
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
|
232978
|
-
const envVersion = "1.0.0-beta.
|
|
232978
|
+
const envVersion = "1.0.0-beta.24";
|
|
232979
232979
|
const versions = `drizzle-kit: ${envVersion ? `v${envVersion}` : "--"}\n${ormVersion}`;
|
|
232980
232980
|
console.log(chalk.gray(versions), "\n");
|
|
232981
232981
|
};
|
package/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value:
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
2
|
+
|
|
2
3
|
//#region src/index.ts
|
|
3
4
|
/**
|
|
4
5
|
* **You are currently using version 0.21.0+ of drizzle-kit. If you have just upgraded to this version, please make sure to read the changelog to understand what changes have been made and what
|
|
@@ -93,5 +94,6 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
93
94
|
function defineConfig(config) {
|
|
94
95
|
return config;
|
|
95
96
|
}
|
|
97
|
+
|
|
96
98
|
//#endregion
|
|
97
|
-
exports.defineConfig = defineConfig;
|
|
99
|
+
exports.defineConfig = defineConfig;
|