Skip to content

Releases: tunnckoCore/get-installed-path

v4.0.8

12 Oct 05:42
Compare
Choose a tag to compare

4.0.8 (2017-10-12)

Bug Fixes

v4.0.7

10 Oct 21:47
Compare
Choose a tag to compare

4.0.7 (2017-10-10)

Bug Fixes

  • readme: better codesponsor ad position (68f37a6)

v4.0.6

10 Oct 21:27
Compare
Choose a tag to compare

4.0.6 (2017-10-10)

Bug Fixes

  • readme: cleanup, include CodeSponsor.io (584b2f3)

v4.0.5

09 Oct 14:52
Compare
Choose a tag to compare

4.0.5 (2017-10-09)

Bug Fixes

v4.0.4

09 Oct 14:51
Compare
Choose a tag to compare

4.0.4 (2017-10-09)

Bug Fixes

v4.0.3

06 Oct 12:09
Compare
Choose a tag to compare

4.0.3 (2017-10-06)

Bug Fixes

  • deps: renovate pin dependencies packages (#19) (9b9cbfd)

v4.0.2

06 Oct 10:15
Compare
Choose a tag to compare

4.0.2 (2017-10-06)

Bug Fixes

v4.0.1

06 Oct 04:31
Compare
Choose a tag to compare

4.0.1 (2017-10-06)

Bug Fixes

v4.0.0

06 Oct 04:03
Compare
Choose a tag to compare

4.0.0 (2017-10-06)

BREAKING CHANGE

  • release: switch to named exports
  • rename: the .sync method to getInstalledPathSync named export

Switch from default export to named exports, so there is no .sync method.
So if you use ES Modules you should use this module like this

import { getInstalledPath, getInstalledPathSync } from 'get-installed-path'

or in CJS module system both of below variants should work

// recommended
const { getInstalledPath, getInstalledPathSync } = require('get-installed-path')

// or
const foo = require('get-installed-path')

// and use them
foo.getInstalledPath('npm')
foo.getInstalledPathSync('npm')

v3.0.3

06 Oct 03:32
Compare
Choose a tag to compare

3.0.3 (2017-10-06)

Bug Fixes