We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d9afaf commit 7933df9Copy full SHA for 7933df9
Extension/translations_auto_pr.js
@@ -2,7 +2,10 @@
2
3
const fs = require("fs-extra");
4
const cp = require("child_process");
5
-const Octokit = require('@octokit/rest')
+let Octokit;
6
+import('@octokit/rest').then(module => {
7
+ Octokit = module.Octokit;
8
+});
9
const path = require('path');
10
const parseGitConfig = require('parse-git-config');
11
0 commit comments