Skip to content

Commit

Permalink
Merge pull request #132 from steelbrain/steelbrain/expose-directly
Browse files Browse the repository at this point in the history
Use a better way of exposing exec*
  • Loading branch information
steelbrain committed May 8, 2016
2 parents f3b2f60 + 2e36848 commit ed73836
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.7.1

* Use an alternative technique to export `exec` and `execNode` methods to allow temporary assignments, such as in-specs to work

## 4.7.0

* Use `sb-exec` for process execution, to include a bugfix for Atom 1.7.0
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import * as FS from 'fs'
import * as Helpers from './helpers'
import type { TextEditor, Range } from 'atom'
import type { TempFiles } from './types'
import { exec, execNode } from 'sb-exec'

let NamedRegexp = null
export const FindCache = new Map()
Expand Down Expand Up @@ -245,4 +246,4 @@ export function parse(data, regex, opts = {}) {
return messages
}

export { exec, execNode } from 'sb-exec'
export { exec, execNode }

0 comments on commit ed73836

Please sign in to comment.