Skip to content

Commit e4345ce

Browse files
committed
bump
1 parent 2a89ae6 commit e4345ce

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

apps/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drizzle-lab",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "Drizzle Lab CLI",
55
"sideEffects": false,
66
"type": "module",

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode-extension/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
77
## [0.7.0]
88

99
- Add support for MySQL
10+
- Fix code lens showing up in non-drizzle-kit config files
1011

1112
## [0.6.0]
1213

vscode-extension/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode-extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Drizzle ORM",
44
"description": "Adds schema visualizer for Drizzle ORM",
55
"preview": true,
6-
"version": "0.6.0",
6+
"version": "0.7.0",
77
"private": true,
88
"icon": "icon.png",
99
"license": "MIT",

vscode-extension/src/utils.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ export function findDrizzleConfigLines(
8888
(text.includes("defineConfig") ||
8989
text.includes("type Config") ||
9090
text.includes("satisfies Config")) &&
91-
options.requireDb
92-
? text.includes("dbCredentials")
93-
: true;
91+
(options.requireDb ? text.includes("dbCredentials") : true);
9492

9593
if (!isConfig) {
9694
return [];

0 commit comments

Comments
 (0)