Skip to content

Commit 0b63073

Browse files
committed
chore(deps): require atom-utils-plus
1 parent 5dbe2c4 commit 0b63073

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

lib/decorators/element.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
'use strict'
22

3-
const { registerOrUpdateElement } = require('atom-utils')
3+
const { registerOrUpdateElement } = require('atom-utils-plus')
44

55
/**
66
* Generates a decorator function to convert a class into a custom element
7-
* through the `registerOrUpdateElement` method from `atom-utils`.
7+
* through the `registerOrUpdateElement` method from `atom-utils-plus`.
88
*
99
* The decorator will take care to return the generated element class so that
1010
* you can just export it directly as demonstrated below.

lib/minimap-element.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const { EventsDelegation, AncestorsMethods } = require('atom-utils')
3+
const { EventsDelegation, AncestorsMethods } = require('atom-utils-plus')
44
const DOMStylesReader = require('./mixins/dom-styles-reader')
55
const CanvasDrawer = require('./mixins/canvas-drawer')
66
const include = require('./decorators/include')

lib/minimap-quick-settings-element.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const { CompositeDisposable, Emitter } = require('atom')
4-
const { EventsDelegation, SpacePenDSL } = require('atom-utils')
4+
const { EventsDelegation, SpacePenDSL } = require('atom-utils-plus')
55

66
const Main = require('./main')
77
const element = require('./decorators/element')

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
}
207207
},
208208
"dependencies": {
209-
"atom-utils": "npm:atom-utils-plus@^0.11.0",
209+
"atom-utils-plus": "^0.11.0",
210210
"delegato": "^1.0.0",
211211
"element-resize-detector": "^1.2.1",
212212
"fs-plus": "^3.1.1",

spec/minimap-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('Minimap', () => {
8989

9090
editor.setText('foo')
9191

92-
// because of requestAnimation the change is relayed asynchronously.
92+
// because of requestAnimation the change is relayed asynchronously.
9393
setTimeout(() => {
9494
expect(changeSpy).toHaveBeenCalled()
9595
}, 1000)

0 commit comments

Comments
 (0)