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 208f9cd commit 2a0b1cdCopy full SHA for 2a0b1cd
src/main.ts
@@ -34,9 +34,9 @@ async function package_deps() {
34
"linter-eslint",
35
];
36
if (deps.some((p) => !atom.packages.isPackageLoaded(p))) {
37
- await import("atom-package-deps").then((atom_package_deps) => {
+ await import("atom-package-deps").then(({install}) => {
38
// install if not installed
39
- atom_package_deps.install("atom-ide", false);
+ install("atom-ide", false);
40
// enable if disabled
41
deps
42
.filter((p) => !atom.packages.isPackageLoaded(p))
0 commit comments