Skip to content

Commit

Permalink
Merge branch 'main' of github.com:forcedotcom/lightning-language-serv…
Browse files Browse the repository at this point in the history
…er into pr/591
  • Loading branch information
jmsjtu committed Jul 4, 2024
2 parents 7b9e95f + 0fd5ff9 commit 95b93f0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "4.8.0"
"version": "4.9.0"
}
4 changes: 2 additions & 2 deletions packages/aura-language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/aura-language-server",
"version": "4.8.0",
"version": "4.9.0",
"description": "Language server for Aura components.",
"main": "lib/aura-indexer/indexer.js",
"typings": "lib/shared.d.ts",
Expand All @@ -27,7 +27,7 @@
"package": "yarn pack"
},
"dependencies": {
"@salesforce/lightning-lsp-common": "4.8.0",
"@salesforce/lightning-lsp-common": "4.9.0",
"acorn": "^6.0.0",
"acorn-loose": "^6.0.0",
"acorn-walk": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/lightning-lsp-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/lightning-lsp-common",
"version": "4.8.0",
"version": "4.9.0",
"description": "Common components for lwc-language-server and aura-language-server.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions packages/lightning-lsp-common/src/__tests__/context.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ it('configureSfdxProject()', async () => {
// .forceignore
const forceignoreContent = fs.readFileSync(forceignorePath, 'utf8');
expect(forceignoreContent).toContain('**/jsconfig.json');
expect(forceignoreContent).toContain('**/tsconfig.json');
expect(forceignoreContent).toContain('**/.eslintrc.json');
expect(forceignoreContent).toContain('**/*.ts');

// typings
expect(join(sfdxTypingsPath, 'lds.d.ts')).toExist();
Expand Down
2 changes: 2 additions & 0 deletions packages/lightning-lsp-common/src/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,9 @@ export class WorkspaceContext {

private async updateForceIgnoreFile(ignoreFile: string): Promise<void> {
await utils.appendLineIfMissing(ignoreFile, '**/jsconfig.json');
await utils.appendLineIfMissing(ignoreFile, '**/tsconfig.json');
await utils.appendLineIfMissing(ignoreFile, '**/.eslintrc.json');
await utils.appendLineIfMissing(ignoreFile, '**/*.ts');
}

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/lwc-language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/lwc-language-server",
"version": "4.8.0",
"version": "4.9.0",
"description": "Language server for Lightning Web Components.",
"main": "lib/indexer.js",
"license": "BSD-3-Clause",
Expand Down Expand Up @@ -34,7 +34,7 @@
"@lwc/template-compiler": "2.50.0",
"@salesforce/apex": "0.0.12",
"@salesforce/label": "0.0.12",
"@salesforce/lightning-lsp-common": "4.8.0",
"@salesforce/lightning-lsp-common": "4.9.0",
"@salesforce/resourceurl": "0.0.12",
"@salesforce/schema": "0.0.12",
"@salesforce/user": "0.0.12",
Expand Down

0 comments on commit 95b93f0

Please sign in to comment.