Skip to content

Commit ca7c5bd

Browse files
committed
Add punycode for markdown
1 parent 37bce10 commit ca7c5bd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

packages/app/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@
170170
"posthtml": "^0.11.3",
171171
"posthtml-parser": "^0.4.1",
172172
"posthtml-render": "^1.1.0",
173+
"punycode": "^2.1.1",
173174
"qrcode.react": "^0.8.0",
174175
"qs": "^6.5.0",
175176
"querystring": "^0.2.0",

packages/app/src/app/overmind/effects/vscode/vscode-script-loader.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,10 @@ function initializeRequires() {
315315
return require('assert');
316316
});
317317

318+
global.require.define('punycode', [], () => {
319+
return require('punycode');
320+
});
321+
318322
global.require.define('vs/base/common/amd', [], () => ({
319323
getPathFromAmdModule: (_, relativePath) =>
320324
require('path').join('/vs', relativePath),

0 commit comments

Comments
 (0)