@parcel/lsp 2.12.1-dev.3151 → 2.12.1-dev.3171

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.
Files changed (2) hide show
  1. package/lib/LspServer.js +78 -78
  2. package/package.json +4 -4
package/lib/LspServer.js CHANGED
@@ -1,13 +1,13 @@
1
- var $iPNRr$path = require("path");
2
- var $iPNRr$fs = require("fs");
3
- var $iPNRr$os = require("os");
4
- var $iPNRr$vscodelanguageservernode = require("vscode-languageserver/node");
5
- var $iPNRr$vscodejsonrpcnode = require("vscode-jsonrpc/node");
6
- var $iPNRr$assert = require("assert");
7
- var $iPNRr$url = require("url");
8
- var $iPNRr$commonpathprefix = require("common-path-prefix");
9
- var $iPNRr$parcelwatcher = require("@parcel/watcher");
10
- var $iPNRr$parcellspprotocol = require("@parcel/lsp-protocol");
1
+ var $98p6W$path = require("path");
2
+ var $98p6W$fs = require("fs");
3
+ var $98p6W$os = require("os");
4
+ var $98p6W$vscodelanguageservernode = require("vscode-languageserver/node");
5
+ var $98p6W$vscodejsonrpcnode = require("vscode-jsonrpc/node");
6
+ var $98p6W$assert = require("assert");
7
+ var $98p6W$url = require("url");
8
+ var $98p6W$commonpathprefix = require("common-path-prefix");
9
+ var $98p6W$parcelwatcher = require("@parcel/watcher");
10
+ var $98p6W$parcellspprotocol = require("@parcel/lsp-protocol");
11
11
 
12
12
 
13
13
 
@@ -19,31 +19,31 @@ var $iPNRr$parcellspprotocol = require("@parcel/lsp-protocol");
19
19
 
20
20
 
21
21
 
22
- const $8ff6af50fad8f05e$var$connection = (0, $iPNRr$vscodelanguageservernode.createConnection)((0, $iPNRr$vscodelanguageservernode.ProposedFeatures).all);
23
- const $8ff6af50fad8f05e$var$WORKSPACE_ROOT = process.cwd();
24
- const $8ff6af50fad8f05e$var$LSP_SENTINEL_FILENAME = "lsp-server";
22
+ const $4a2bb8c4d55a3a92$var$connection = (0, $98p6W$vscodelanguageservernode.createConnection)((0, $98p6W$vscodelanguageservernode.ProposedFeatures).all);
23
+ const $4a2bb8c4d55a3a92$var$WORKSPACE_ROOT = process.cwd();
24
+ const $4a2bb8c4d55a3a92$var$LSP_SENTINEL_FILENAME = "lsp-server";
25
25
  // Create a simple text document manager.
26
26
  // const documents: TextDocuments<TextDocument> = new TextDocuments(TextDocument);
27
- let $8ff6af50fad8f05e$var$hasConfigurationCapability = false;
28
- let $8ff6af50fad8f05e$var$hasWorkspaceFolderCapability = false;
27
+ let $4a2bb8c4d55a3a92$var$hasConfigurationCapability = false;
28
+ let $4a2bb8c4d55a3a92$var$hasWorkspaceFolderCapability = false;
29
29
  // let hasDiagnosticRelatedInformationCapability = false;
30
- let $8ff6af50fad8f05e$var$hasDiagnosticsRefreshSupport = false;
31
- $8ff6af50fad8f05e$var$connection.onInitialize((params)=>{
30
+ let $4a2bb8c4d55a3a92$var$hasDiagnosticsRefreshSupport = false;
31
+ $4a2bb8c4d55a3a92$var$connection.onInitialize((params)=>{
32
32
  var _capabilities_workspace_diagnostics, _capabilities_workspace;
33
33
  const capabilities = params.capabilities;
34
34
  // Does the client support the `workspace/configuration` request?
35
35
  // If not, we fall back using global settings.
36
- $8ff6af50fad8f05e$var$hasConfigurationCapability = !!(capabilities.workspace && !!capabilities.workspace.configuration);
37
- $8ff6af50fad8f05e$var$hasWorkspaceFolderCapability = !!(capabilities.workspace && !!capabilities.workspace.workspaceFolders);
36
+ $4a2bb8c4d55a3a92$var$hasConfigurationCapability = !!(capabilities.workspace && !!capabilities.workspace.configuration);
37
+ $4a2bb8c4d55a3a92$var$hasWorkspaceFolderCapability = !!(capabilities.workspace && !!capabilities.workspace.workspaceFolders);
38
38
  // hasDiagnosticRelatedInformationCapability = !!(
39
39
  // capabilities.textDocument &&
40
40
  // capabilities.textDocument.publishDiagnostics &&
41
41
  // capabilities.textDocument.publishDiagnostics.relatedInformation
42
42
  // );
43
- $8ff6af50fad8f05e$var$hasDiagnosticsRefreshSupport = Boolean((_capabilities_workspace = capabilities.workspace) === null || _capabilities_workspace === void 0 ? void 0 : (_capabilities_workspace_diagnostics = _capabilities_workspace.diagnostics) === null || _capabilities_workspace_diagnostics === void 0 ? void 0 : _capabilities_workspace_diagnostics.refreshSupport);
43
+ $4a2bb8c4d55a3a92$var$hasDiagnosticsRefreshSupport = Boolean((_capabilities_workspace = capabilities.workspace) === null || _capabilities_workspace === void 0 ? void 0 : (_capabilities_workspace_diagnostics = _capabilities_workspace.diagnostics) === null || _capabilities_workspace_diagnostics === void 0 ? void 0 : _capabilities_workspace_diagnostics.refreshSupport);
44
44
  const result = {
45
45
  capabilities: {
46
- textDocumentSync: (0, $iPNRr$vscodelanguageservernode.TextDocumentSyncKind).Incremental,
46
+ textDocumentSync: (0, $98p6W$vscodelanguageservernode.TextDocumentSyncKind).Incremental,
47
47
  // Tell the client that this server supports code completion.
48
48
  diagnosticProvider: {
49
49
  workspaceDiagnostics: false,
@@ -51,31 +51,31 @@ $8ff6af50fad8f05e$var$connection.onInitialize((params)=>{
51
51
  }
52
52
  }
53
53
  };
54
- if ($8ff6af50fad8f05e$var$hasWorkspaceFolderCapability) result.capabilities.workspace = {
54
+ if ($4a2bb8c4d55a3a92$var$hasWorkspaceFolderCapability) result.capabilities.workspace = {
55
55
  workspaceFolders: {
56
56
  supported: true
57
57
  }
58
58
  };
59
59
  return result;
60
60
  });
61
- $8ff6af50fad8f05e$var$connection.onInitialized(()=>{
62
- if ($8ff6af50fad8f05e$var$hasConfigurationCapability) // Register for all configuration changes.
63
- $8ff6af50fad8f05e$var$connection.client.register((0, $iPNRr$vscodelanguageservernode.DidChangeConfigurationNotification).type, undefined);
64
- if ($8ff6af50fad8f05e$var$hasWorkspaceFolderCapability) $8ff6af50fad8f05e$var$connection.workspace.onDidChangeWorkspaceFolders(()=>{
65
- $8ff6af50fad8f05e$var$connection.console.log("Workspace folder change event received.");
61
+ $4a2bb8c4d55a3a92$var$connection.onInitialized(()=>{
62
+ if ($4a2bb8c4d55a3a92$var$hasConfigurationCapability) // Register for all configuration changes.
63
+ $4a2bb8c4d55a3a92$var$connection.client.register((0, $98p6W$vscodelanguageservernode.DidChangeConfigurationNotification).type, undefined);
64
+ if ($4a2bb8c4d55a3a92$var$hasWorkspaceFolderCapability) $4a2bb8c4d55a3a92$var$connection.workspace.onDidChangeWorkspaceFolders(()=>{
65
+ $4a2bb8c4d55a3a92$var$connection.console.log("Workspace folder change event received.");
66
66
  });
67
67
  });
68
68
  // Proxy
69
- $8ff6af50fad8f05e$var$connection.onRequest((0, $iPNRr$parcellspprotocol.RequestImporters), async (params)=>{
70
- let client = $8ff6af50fad8f05e$var$findClient(params);
69
+ $4a2bb8c4d55a3a92$var$connection.onRequest((0, $98p6W$parcellspprotocol.RequestImporters), async (params)=>{
70
+ let client = $4a2bb8c4d55a3a92$var$findClient(params);
71
71
  if (client) {
72
- let result = await client.connection.sendRequest((0, $iPNRr$parcellspprotocol.RequestImporters), params);
72
+ let result = await client.connection.sendRequest((0, $98p6W$parcellspprotocol.RequestImporters), params);
73
73
  return result;
74
74
  }
75
75
  return null;
76
76
  });
77
- $8ff6af50fad8f05e$var$connection.onRequest((0, $iPNRr$vscodelanguageservernode.DocumentDiagnosticRequest).type, async (params)=>{
78
- let client = $8ff6af50fad8f05e$var$findClient(params.textDocument.uri);
77
+ $4a2bb8c4d55a3a92$var$connection.onRequest((0, $98p6W$vscodelanguageservernode.DocumentDiagnosticRequest).type, async (params)=>{
78
+ let client = $4a2bb8c4d55a3a92$var$findClient(params.textDocument.uri);
79
79
  let result;
80
80
  if (client) {
81
81
  // console.log(
@@ -84,23 +84,23 @@ $8ff6af50fad8f05e$var$connection.onRequest((0, $iPNRr$vscodelanguageservernode.D
84
84
  // params.previousResultId === client.lastBuild,
85
85
  // );
86
86
  if (params.previousResultId === client.lastBuild) return {
87
- kind: (0, $iPNRr$vscodelanguageservernode.DocumentDiagnosticReportKind).Unchanged,
87
+ kind: (0, $98p6W$vscodelanguageservernode.DocumentDiagnosticReportKind).Unchanged,
88
88
  resultId: client.lastBuild
89
89
  };
90
- result = await client.connection.sendRequest((0, $iPNRr$parcellspprotocol.RequestDocumentDiagnostics), params.textDocument.uri);
90
+ result = await client.connection.sendRequest((0, $98p6W$parcellspprotocol.RequestDocumentDiagnostics), params.textDocument.uri);
91
91
  if (result) client.uris.add(params.textDocument.uri);
92
92
  }
93
93
  return {
94
- kind: (0, $iPNRr$vscodelanguageservernode.DocumentDiagnosticReportKind).Full,
94
+ kind: (0, $98p6W$vscodelanguageservernode.DocumentDiagnosticReportKind).Full,
95
95
  resultId: client === null || client === void 0 ? void 0 : client.lastBuild,
96
96
  items: result !== null && result !== void 0 ? result : []
97
97
  };
98
98
  });
99
- $8ff6af50fad8f05e$var$connection.listen();
100
- class $8ff6af50fad8f05e$var$ProgressReporter {
99
+ $4a2bb8c4d55a3a92$var$connection.listen();
100
+ class $4a2bb8c4d55a3a92$var$ProgressReporter {
101
101
  begin() {
102
102
  this.progressReporterPromise = (async ()=>{
103
- let reporter = await $8ff6af50fad8f05e$var$connection.window.createWorkDoneProgress();
103
+ let reporter = await $4a2bb8c4d55a3a92$var$connection.window.createWorkDoneProgress();
104
104
  reporter.begin("Parcel");
105
105
  return reporter;
106
106
  })();
@@ -110,7 +110,7 @@ class $8ff6af50fad8f05e$var$ProgressReporter {
110
110
  }
111
111
  async done() {
112
112
  if (this.progressReporterPromise == null) this.begin();
113
- $iPNRr$assert(this.progressReporterPromise != null);
113
+ $98p6W$assert(this.progressReporterPromise != null);
114
114
  (await this.progressReporterPromise).done();
115
115
  this.progressReporterPromise = null;
116
116
  }
@@ -124,17 +124,17 @@ class $8ff6af50fad8f05e$var$ProgressReporter {
124
124
  }
125
125
  }
126
126
  }
127
- function $8ff6af50fad8f05e$var$sendDiagnosticsRefresh() {
128
- if ($8ff6af50fad8f05e$var$hasDiagnosticsRefreshSupport) $8ff6af50fad8f05e$var$connection.sendRequest((0, $iPNRr$vscodelanguageservernode.DiagnosticRefreshRequest).type);
127
+ function $4a2bb8c4d55a3a92$var$sendDiagnosticsRefresh() {
128
+ if ($4a2bb8c4d55a3a92$var$hasDiagnosticsRefreshSupport) $4a2bb8c4d55a3a92$var$connection.sendRequest((0, $98p6W$vscodelanguageservernode.DiagnosticRefreshRequest).type);
129
129
  }
130
- let $8ff6af50fad8f05e$var$progressReporter = new $8ff6af50fad8f05e$var$ProgressReporter();
131
- let $8ff6af50fad8f05e$var$clients = new Map();
132
- function $8ff6af50fad8f05e$var$findClient(document) {
133
- let filepath = $iPNRr$url.fileURLToPath(document);
130
+ let $4a2bb8c4d55a3a92$var$progressReporter = new $4a2bb8c4d55a3a92$var$ProgressReporter();
131
+ let $4a2bb8c4d55a3a92$var$clients = new Map();
132
+ function $4a2bb8c4d55a3a92$var$findClient(document) {
133
+ let filepath = $98p6W$url.fileURLToPath(document);
134
134
  let longestPrefix = 0;
135
135
  let bestClient;
136
- for (let [, client] of $8ff6af50fad8f05e$var$clients){
137
- let prefix = $iPNRr$commonpathprefix([
136
+ for (let [, client] of $4a2bb8c4d55a3a92$var$clients){
137
+ let prefix = $98p6W$commonpathprefix([
138
138
  client.projectRoot,
139
139
  filepath
140
140
  ]).length;
@@ -145,14 +145,14 @@ function $8ff6af50fad8f05e$var$findClient(document) {
145
145
  }
146
146
  return bestClient;
147
147
  }
148
- function $8ff6af50fad8f05e$var$loadMetafile(filepath) {
149
- const file = $iPNRr$fs.readFileSync(filepath, "utf-8");
148
+ function $4a2bb8c4d55a3a92$var$loadMetafile(filepath) {
149
+ const file = $98p6W$fs.readFileSync(filepath, "utf-8");
150
150
  return JSON.parse(file);
151
151
  }
152
- function $8ff6af50fad8f05e$var$createClient(metafilepath, metafile) {
152
+ function $4a2bb8c4d55a3a92$var$createClient(metafilepath, metafile) {
153
153
  let socketfilepath = metafilepath.slice(0, -5);
154
- let [reader, writer] = (0, $iPNRr$vscodejsonrpcnode.createServerPipeTransport)(socketfilepath);
155
- let client = (0, $iPNRr$vscodejsonrpcnode.createMessageConnection)(reader, writer);
154
+ let [reader, writer] = (0, $98p6W$vscodejsonrpcnode.createServerPipeTransport)(socketfilepath);
155
+ let client = (0, $98p6W$vscodejsonrpcnode.createMessageConnection)(reader, writer);
156
156
  client.listen();
157
157
  let uris = new Set();
158
158
  let result = {
@@ -161,71 +161,71 @@ function $8ff6af50fad8f05e$var$createClient(metafilepath, metafile) {
161
161
  projectRoot: metafile.projectRoot,
162
162
  lastBuild: "0"
163
163
  };
164
- client.onNotification((0, $iPNRr$parcellspprotocol.NotificationBuildStatus), (state, message)=>{
164
+ client.onNotification((0, $98p6W$parcellspprotocol.NotificationBuildStatus), (state, message)=>{
165
165
  // console.log('got NotificationBuildStatus', state, message);
166
166
  if (state === "start") {
167
- $8ff6af50fad8f05e$var$progressReporter.begin();
168
- for (let uri of uris)$8ff6af50fad8f05e$var$connection.sendDiagnostics({
167
+ $4a2bb8c4d55a3a92$var$progressReporter.begin();
168
+ for (let uri of uris)$4a2bb8c4d55a3a92$var$connection.sendDiagnostics({
169
169
  uri: uri,
170
170
  diagnostics: []
171
171
  });
172
- } else if (state === "progress" && message != null) $8ff6af50fad8f05e$var$progressReporter.report(message);
172
+ } else if (state === "progress" && message != null) $4a2bb8c4d55a3a92$var$progressReporter.report(message);
173
173
  else if (state === "end") {
174
174
  result.lastBuild = String(Date.now());
175
- $8ff6af50fad8f05e$var$sendDiagnosticsRefresh();
176
- $8ff6af50fad8f05e$var$progressReporter.done();
177
- $8ff6af50fad8f05e$var$connection.sendNotification((0, $iPNRr$parcellspprotocol.NotificationBuild));
175
+ $4a2bb8c4d55a3a92$var$sendDiagnosticsRefresh();
176
+ $4a2bb8c4d55a3a92$var$progressReporter.done();
177
+ $4a2bb8c4d55a3a92$var$connection.sendNotification((0, $98p6W$parcellspprotocol.NotificationBuild));
178
178
  }
179
179
  });
180
- client.onNotification((0, $iPNRr$parcellspprotocol.NotificationWorkspaceDiagnostics), (diagnostics)=>{
180
+ client.onNotification((0, $98p6W$parcellspprotocol.NotificationWorkspaceDiagnostics), (diagnostics)=>{
181
181
  // console.log('got NotificationWorkspaceDiagnostics', diagnostics);
182
182
  for (let d of diagnostics){
183
183
  uris.add(d.uri);
184
- $8ff6af50fad8f05e$var$connection.sendDiagnostics(d);
184
+ $4a2bb8c4d55a3a92$var$connection.sendDiagnostics(d);
185
185
  }
186
186
  });
187
187
  client.onClose(()=>{
188
- $8ff6af50fad8f05e$var$clients.delete(JSON.stringify(metafile));
189
- $8ff6af50fad8f05e$var$sendDiagnosticsRefresh();
188
+ $4a2bb8c4d55a3a92$var$clients.delete(JSON.stringify(metafile));
189
+ $4a2bb8c4d55a3a92$var$sendDiagnosticsRefresh();
190
190
  return Promise.all([
191
191
  ...uris
192
- ].map((uri)=>$8ff6af50fad8f05e$var$connection.sendDiagnostics({
192
+ ].map((uri)=>$4a2bb8c4d55a3a92$var$connection.sendDiagnostics({
193
193
  uri: uri,
194
194
  diagnostics: []
195
195
  })));
196
196
  });
197
- $8ff6af50fad8f05e$var$sendDiagnosticsRefresh();
198
- $8ff6af50fad8f05e$var$clients.set(JSON.stringify(metafile), result);
197
+ $4a2bb8c4d55a3a92$var$sendDiagnosticsRefresh();
198
+ $4a2bb8c4d55a3a92$var$clients.set(JSON.stringify(metafile), result);
199
199
  }
200
200
  // Take realpath because to have consistent cache keys on macOS (/var -> /private/var)
201
- const $8ff6af50fad8f05e$var$BASEDIR = $iPNRr$path.join($iPNRr$fs.realpathSync($iPNRr$os.tmpdir()), "parcel-lsp");
202
- $iPNRr$fs.mkdirSync($8ff6af50fad8f05e$var$BASEDIR, {
201
+ const $4a2bb8c4d55a3a92$var$BASEDIR = $98p6W$path.join($98p6W$fs.realpathSync($98p6W$os.tmpdir()), "parcel-lsp");
202
+ $98p6W$fs.mkdirSync($4a2bb8c4d55a3a92$var$BASEDIR, {
203
203
  recursive: true
204
204
  });
205
- $iPNRr$fs.writeFileSync($iPNRr$path.join($8ff6af50fad8f05e$var$BASEDIR, $8ff6af50fad8f05e$var$LSP_SENTINEL_FILENAME), "");
205
+ $98p6W$fs.writeFileSync($98p6W$path.join($4a2bb8c4d55a3a92$var$BASEDIR, $4a2bb8c4d55a3a92$var$LSP_SENTINEL_FILENAME), "");
206
206
  // Search for currently running Parcel processes in the parcel-lsp dir.
207
207
  // Create an IPC client connection for each running process.
208
- for (let filename of $iPNRr$fs.readdirSync($8ff6af50fad8f05e$var$BASEDIR)){
208
+ for (let filename of $98p6W$fs.readdirSync($4a2bb8c4d55a3a92$var$BASEDIR)){
209
209
  if (!filename.endsWith(".json")) continue;
210
- let filepath = $iPNRr$path.join($8ff6af50fad8f05e$var$BASEDIR, filename);
211
- const contents = $8ff6af50fad8f05e$var$loadMetafile(filepath);
210
+ let filepath = $98p6W$path.join($4a2bb8c4d55a3a92$var$BASEDIR, filename);
211
+ const contents = $4a2bb8c4d55a3a92$var$loadMetafile(filepath);
212
212
  const { projectRoot: projectRoot } = contents;
213
- if ($8ff6af50fad8f05e$var$WORKSPACE_ROOT === projectRoot) $8ff6af50fad8f05e$var$createClient(filepath, contents);
213
+ if ($4a2bb8c4d55a3a92$var$WORKSPACE_ROOT === projectRoot) $4a2bb8c4d55a3a92$var$createClient(filepath, contents);
214
214
  }
215
215
  // Watch for new Parcel processes in the parcel-lsp dir, and disconnect the
216
216
  // client for each corresponding connection when a Parcel process ends
217
- $iPNRr$parcelwatcher.subscribe($8ff6af50fad8f05e$var$BASEDIR, async (err, events)=>{
217
+ $98p6W$parcelwatcher.subscribe($4a2bb8c4d55a3a92$var$BASEDIR, async (err, events)=>{
218
218
  if (err) throw err;
219
219
  for (let event of events){
220
220
  if (event.type === "create" && event.path.endsWith(".json")) {
221
- const contents = $8ff6af50fad8f05e$var$loadMetafile(event.path);
221
+ const contents = $4a2bb8c4d55a3a92$var$loadMetafile(event.path);
222
222
  const { projectRoot: projectRoot } = contents;
223
- if ($8ff6af50fad8f05e$var$WORKSPACE_ROOT === projectRoot) $8ff6af50fad8f05e$var$createClient(event.path, contents);
223
+ if ($4a2bb8c4d55a3a92$var$WORKSPACE_ROOT === projectRoot) $4a2bb8c4d55a3a92$var$createClient(event.path, contents);
224
224
  } else if (event.type === "delete" && event.path.endsWith(".json")) {
225
- let existing = $8ff6af50fad8f05e$var$clients.get(event.path);
225
+ let existing = $4a2bb8c4d55a3a92$var$clients.get(event.path);
226
226
  console.log("existing", event.path, existing);
227
227
  if (existing) {
228
- $8ff6af50fad8f05e$var$clients.delete(event.path);
228
+ $4a2bb8c4d55a3a92$var$clients.delete(event.path);
229
229
  existing.connection.end();
230
230
  }
231
231
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/lsp",
3
- "version": "2.12.1-dev.3151+70889ca07",
3
+ "version": "2.12.1-dev.3171+79b158883",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -22,10 +22,10 @@
22
22
  },
23
23
  "engines": {
24
24
  "node": ">= 12.0.0",
25
- "parcel": "^2.0.0-dev.1526+70889ca07"
25
+ "parcel": "^2.0.0-dev.1546+79b158883"
26
26
  },
27
27
  "dependencies": {
28
- "@parcel/lsp-protocol": "2.12.1-dev.3151+70889ca07",
28
+ "@parcel/lsp-protocol": "2.12.1-dev.3171+79b158883",
29
29
  "@parcel/watcher": "^2.0.7",
30
30
  "common-path-prefix": "^3.0.0",
31
31
  "nullthrows": "^1.1.1",
@@ -44,5 +44,5 @@
44
44
  "targets": {
45
45
  "types": false
46
46
  },
47
- "gitHead": "70889ca07dccb95e21e4c6a2844d632e3723faf4"
47
+ "gitHead": "79b158883170daac9cd17bdecfebff163bc99e52"
48
48
  }