-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from mathworks/dklilley/release/1.2.7
MATLAB language server - v1.2.7
- Loading branch information
Showing
106 changed files
with
43,768 additions
and
4,433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright 2024 The MathWorks, Inc. | ||
const fs = require('fs') | ||
const path = require('path') | ||
|
||
const sourceDir = path.join(__dirname, '..', 'src', 'licensing', 'gui', 'build') | ||
const targetDir = path.join(__dirname, '..', 'out', 'licensing', 'static') | ||
|
||
fs.cp(sourceDir, targetDir, { recursive: true }, (err) => { | ||
if (err) { | ||
console.error('Error copying files: ', err) | ||
} else { | ||
console.log('Files copied successfully.') | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright 2024 The MathWorks, Inc. | ||
const fs = require('fs') | ||
const path = require('path') | ||
|
||
const dirPath = path.join(__dirname, '..', 'out', 'licensing', 'static') | ||
|
||
fs.mkdir(dirPath, { recursive: true }, (err) => { | ||
if (err) { | ||
console.error('Error creating directory: ', err) | ||
} else { | ||
console.log('Directory created successfully: ', dirPath) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.