Skip to content

Commit b3e6c31

Browse files
author
chenrun666
committed
chore: bump version to 0.1.0-pre.2
1 parent c950414 commit b3e6c31

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

bazel-jdt-bridge/vscode-extension/package.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bazel-jdt-bridge",
33
"displayName": "Bazel Java Support",
44
"description": "Bazel Java dependency resolver for Eclipse JDT.LS",
5-
"version": "0.1.0",
5+
"version": "0.1.0-pre.2",
66
"publisher": "bazel-jdt",
77
"engines": {
88
"vscode": "^1.85.0"
@@ -107,7 +107,10 @@
107107
"bazel-jdt.dependencyResolution": {
108108
"type": "string",
109109
"default": "transitive",
110-
"enum": ["transitive", "optional"],
110+
"enum": [
111+
"transitive",
112+
"optional"
113+
],
111114
"enumDescriptions": [
112115
"Automatically import all transitive workspace-internal dependencies as Eclipse projects (recommended)",
113116
"Mark inter-project dependencies as optional — suppresses errors when dependent projects are absent"
@@ -117,7 +120,10 @@
117120
"bazel-jdt.syncMode": {
118121
"type": "string",
119122
"default": "fast",
120-
"enum": ["fast", "full"],
123+
"enum": [
124+
"fast",
125+
"full"
126+
],
121127
"enumDescriptions": [
122128
"Use header JARs (hjars) for fast sync — best for quick iteration",
123129
"Build full JARs for complete IDE experience — slower initial sync but no missing imports"
@@ -127,7 +133,11 @@
127133
"bazel-jdt.dependencySourceLoading": {
128134
"type": "string",
129135
"default": "full-project",
130-
"enum": ["full-project", "on-demand", "source-view"],
136+
"enum": [
137+
"full-project",
138+
"on-demand",
139+
"source-view"
140+
],
131141
"enumDescriptions": [
132142
"Automatically create Eclipse Projects for all workspace-internal dependencies (recommended, full IDE features)",
133143
"Only create Projects for .bazelproject directories. Show notification to create projects on demand when navigating to dependency source files",

0 commit comments

Comments
 (0)