Skip to content

Commit 5e49f36

Browse files
authored
fix: update deps (#279)
1 parent 964faee commit 5e49f36

File tree

15 files changed

+17425
-4520
lines changed

15 files changed

+17425
-4520
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
- uses: UziTech/action-setup-atom@v1
2424
with:
2525
channel: ${{ matrix.atom_channel }}
26+
- uses: actions/setup-node@v2
27+
with:
28+
node-version: "lts/*"
2629
- name: Versions
2730
run: apm -v
2831
- name: Install dependencies
@@ -63,9 +66,9 @@ jobs:
6366
steps:
6467
- uses: actions/checkout@v2
6568
- uses: UziTech/action-setup-atom@v1
66-
- uses: actions/setup-node@v1
69+
- uses: actions/setup-node@v2
6770
with:
68-
node-version: "12.x"
71+
node-version: "lts/*"
6972
- name: NPM install
7073
run: npm install
7174
- name: Build and Commit

dist/autocomplete-paths.js

Lines changed: 14091 additions & 9 deletions
Large diffs are not rendered by default.

dist/autocomplete-paths.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/autocomplete-paths.js

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
"use babel"
2-
export { config } from "./config"
31
import PathsProvider from "./paths-provider"
42
import { CompositeDisposable } from "atom"
53
import { OptionScopes } from "./config/option-scopes"
64
import { debounce } from "underscore"
75

6+
export { config } from "./config"
7+
88
const subscriptions = new CompositeDisposable()
99
let _provider
10-
/** provider.rebuildCache method debounced */
10+
/** Provider.rebuildCache method debounced */
1111
let _rebuildCache
1212
let _statusBar
1313
let _statusBarInterval
@@ -78,7 +78,8 @@ export function deactivate() {
7878

7979
/**
8080
* Invoked when the status bar becomes available
81-
* @param {StatusBar} statusBar
81+
*
82+
* @param {StatusBar} statusBar
8283
*/
8384
export function consumeStatusBar(statusBar) {
8485
_statusBar = statusBar
@@ -87,9 +88,7 @@ export function consumeStatusBar(statusBar) {
8788
}
8889
}
8990

90-
/**
91-
* Displays the status bar tile
92-
*/
91+
/** Displays the status bar tile */
9392
function _displayStatusBarTile() {
9493
if (!_statusBar) {
9594
_displayStatusBarItemOnConsumption = true
@@ -120,9 +119,7 @@ function _displayStatusBarTile() {
120119
}, 500)
121120
}
122121

123-
/**
124-
* Hides the status bar tile
125-
*/
122+
/** Hides the status bar tile */
126123
function _hideStatusBarTile() {
127124
if (_statusBarInterval) {
128125
clearInterval(_statusBarInterval)

lib/config/default-scopes.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use babel"
2-
31
const javascriptPrefixes = [
42
"import\\s+.*?from\\s+['\"]", // import foo from './foo'
53
"import\\s+['\"]", // import './foo'

lib/config/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use babel"
2-
31
import { OptionScopes } from "./option-scopes"
42

53
export const config = {

lib/config/option-scopes.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use babel"
2-
31
export const OptionScopes = {
42
enableHtmlSupport: [
53
{

0 commit comments

Comments
 (0)