@parcel/lsp 2.15.1 → 2.15.2-canary.3458

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