-
Notifications
You must be signed in to change notification settings - Fork 411
feat: support comments in vscode settings #5436
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4f2540b
feat: support comments in vscode settings
tinfoil-knight 2f778c1
refactor: destructure imports
tinfoil-knight 02de477
Merge branch 'main' into 5407-comment-json
tinfoil-knight 452dea2
test: add test to check if JSON with comments is handled
tinfoil-knight 1dbee1a
fix: remove unnecessary log statement
tinfoil-knight b0c3a08
test: remove .only modifier
tinfoil-knight 26ec300
refactor: use utf8 encoding in readFile instead of using toString on β¦
tinfoil-knight 04bef8d
refactor: import comment-json using a namespace
tinfoil-knight 7c98336
Merge branch 'main' into 5407-comment-json
kodiakhq[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -2,11 +2,12 @@ const { readFile } = require('fs/promises') | |
const { resolve } = require('path') | ||
|
||
const test = require('ava') | ||
const { parse } = require('comment-json') | ||
const execa = require('execa') | ||
|
||
const callCli = require('./utils/call-cli.cjs') | ||
const cliPath = require('./utils/cli-path.cjs') | ||
const { CONFIRM, answerWithValue, handleQuestions } = require('./utils/handle-questions.cjs') | ||
const { CONFIRM, NO, answerWithValue, handleQuestions } = require('./utils/handle-questions.cjs') | ||
const { withSiteBuilder } = require('./utils/site-builder.cjs') | ||
const { normalize } = require('./utils/snapshots.cjs') | ||
|
||
|
@@ -96,3 +97,45 @@ test('Does not generate a new VS Code settings file if the user does not confirm | |
t.is(error.code, 'ENOENT') | ||
}) | ||
}) | ||
|
||
test('Handles JSON with comments', async (t) => { | ||
await withSiteBuilder('repo', async (builder) => { | ||
const comment = '// sets value for someSetting' | ||
await builder | ||
.withContentFile({ | ||
path: '.vscode/settings.json', | ||
content: `{ | ||
"deno.enablePaths":["/some/path"], | ||
"someSetting":"value" ${comment} | ||
}`, | ||
}) | ||
.buildAsync() | ||
|
||
const childProcess = execa(cliPath, ['recipes', 'vscode'], { | ||
cwd: builder.directory, | ||
}) | ||
const settingsPath = resolve(builder.directory, '.vscode', 'settings.json') | ||
|
||
handleQuestions(childProcess, [ | ||
{ | ||
question: `There is a VS Code settings file at ${settingsPath}. Can we update it?`, | ||
answer: answerWithValue(CONFIRM), | ||
}, | ||
{ | ||
question: 'The Deno VS Code extension is recommended. Would you like to install it now?', | ||
answer: answerWithValue(NO), | ||
}, | ||
]) | ||
|
||
await childProcess | ||
|
||
const settingsText = await readFile(`${builder.directory}/.vscode/settings.json`, { encoding: 'utf8' }) | ||
t.true(settingsText.includes(comment)) | ||
|
||
const settings = parse(settingsText, null, true) | ||
t.is(settings.someSetting, 'value') | ||
t.is(settings['deno.enable'], true) | ||
t.is(settings['deno.importMap'], '.netlify/edge-functions-import-map.json') | ||
t.deepEqual([...settings['deno.enablePaths']], ['/some/path', 'netlify/edge-functions']) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Spreading the array here since that converts it from the CommentArray type to a native JS array for comparison. |
||
}) | ||
}) |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@danez Note here:
The Deno VS Code extension is recommended. Would you like to install it now?
prompt is there on my local system but it seems like this question is not asked during the CI run. The test just ends up stuck on local env & didn't run before adding the question.I've added the prompt for this test but this issue is there for other tests too. Should I add the extra prompt for other tests too (wherever applicable) in a separate PR?