nyc 13.2.0 → 13.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/lib/commands/report.js +40 -0
  3. package/lib/instrumenters/istanbul.js +6 -12
  4. package/lib/instrumenters/noop.js +5 -5
  5. package/node_modules/arrify/package.json +1 -2
  6. package/node_modules/async/CHANGELOG.md +3 -0
  7. package/node_modules/async/package.json +11 -11
  8. package/node_modules/handlebars/dist/amd/handlebars/base.js +2 -2
  9. package/node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js +4 -1
  10. package/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js +3 -5
  11. package/node_modules/handlebars/dist/cjs/handlebars/base.js +2 -2
  12. package/node_modules/handlebars/dist/cjs/handlebars/compiler/javascript-compiler.js +4 -1
  13. package/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js +3 -5
  14. package/node_modules/handlebars/dist/handlebars.amd.js +10 -9
  15. package/node_modules/handlebars/dist/handlebars.amd.min.js +4 -4
  16. package/node_modules/handlebars/dist/handlebars.js +7 -6
  17. package/node_modules/handlebars/dist/handlebars.min.js +4 -4
  18. package/node_modules/handlebars/dist/handlebars.runtime.amd.js +3 -3
  19. package/node_modules/handlebars/dist/handlebars.runtime.amd.min.js +2 -2
  20. package/node_modules/handlebars/dist/handlebars.runtime.js +2 -2
  21. package/node_modules/handlebars/dist/handlebars.runtime.min.js +2 -2
  22. package/node_modules/handlebars/lib/handlebars/base.js +1 -1
  23. package/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js +3 -0
  24. package/node_modules/handlebars/lib/handlebars/compiler/parser.js +9 -9
  25. package/node_modules/handlebars/lib/handlebars.d.ts +356 -0
  26. package/node_modules/handlebars/package.json +12 -11
  27. package/node_modules/handlebars/release-notes.md +38 -1
  28. package/node_modules/istanbul-reports/CHANGELOG.md +11 -0
  29. package/node_modules/istanbul-reports/package.json +12 -12
  30. package/node_modules/mem/index.js +5 -1
  31. package/node_modules/mem/package.json +14 -14
  32. package/node_modules/normalize-package-data/README.md +1 -1
  33. package/node_modules/normalize-package-data/lib/fixer.js +3 -2
  34. package/node_modules/normalize-package-data/package.json +13 -13
  35. package/node_modules/p-is-promise/index.d.ts +13 -0
  36. package/node_modules/p-is-promise/index.js +10 -6
  37. package/node_modules/p-is-promise/license +4 -16
  38. package/node_modules/p-is-promise/package.json +17 -18
  39. package/node_modules/p-is-promise/readme.md +1 -1
  40. package/node_modules/path-parse/.travis.yml +9 -0
  41. package/node_modules/{is-builtin-module/license → path-parse/LICENSE} +5 -5
  42. package/node_modules/path-parse/README.md +42 -0
  43. package/node_modules/path-parse/index.js +93 -0
  44. package/node_modules/path-parse/package.json +64 -0
  45. package/node_modules/path-parse/test.js +77 -0
  46. package/node_modules/resolve/.editorconfig +20 -0
  47. package/node_modules/resolve/.eslintignore +1 -0
  48. package/node_modules/resolve/.eslintrc +31 -0
  49. package/node_modules/resolve/.travis.yml +269 -0
  50. package/node_modules/resolve/CHANGELOG.md +629 -0
  51. package/node_modules/resolve/LICENSE +18 -0
  52. package/node_modules/resolve/appveyor.yml +47 -0
  53. package/node_modules/resolve/changelog.hbs +36 -0
  54. package/node_modules/resolve/example/async.js +5 -0
  55. package/node_modules/resolve/example/sync.js +3 -0
  56. package/node_modules/resolve/index.js +8 -0
  57. package/node_modules/resolve/lib/async.js +229 -0
  58. package/node_modules/resolve/lib/caller.js +8 -0
  59. package/node_modules/resolve/lib/core.js +53 -0
  60. package/node_modules/resolve/lib/core.json +73 -0
  61. package/node_modules/resolve/lib/node-modules-paths.js +42 -0
  62. package/node_modules/resolve/lib/normalize-options.js +10 -0
  63. package/node_modules/resolve/lib/sync.js +154 -0
  64. package/node_modules/resolve/package.json +77 -0
  65. package/node_modules/resolve/readme.markdown +179 -0
  66. package/node_modules/resolve/test/.eslintrc +5 -0
  67. package/node_modules/resolve/test/core.js +82 -0
  68. package/node_modules/resolve/test/dotdot/abc/index.js +2 -0
  69. package/node_modules/resolve/test/dotdot/index.js +1 -0
  70. package/node_modules/resolve/test/dotdot.js +29 -0
  71. package/node_modules/resolve/test/faulty_basedir.js +29 -0
  72. package/node_modules/resolve/test/filter.js +34 -0
  73. package/node_modules/resolve/test/filter_sync.js +26 -0
  74. package/node_modules/resolve/test/mock.js +143 -0
  75. package/node_modules/resolve/test/mock_sync.js +67 -0
  76. package/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
  77. package/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
  78. package/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
  79. package/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
  80. package/node_modules/resolve/test/module_dir.js +56 -0
  81. package/node_modules/resolve/test/node-modules-paths.js +121 -0
  82. package/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
  83. package/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
  84. package/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
  85. package/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
  86. package/node_modules/resolve/test/node_path.js +70 -0
  87. package/node_modules/resolve/test/nonstring.js +9 -0
  88. package/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  89. package/node_modules/resolve/test/pathfilter.js +75 -0
  90. package/node_modules/resolve/test/precedence/aaa/index.js +1 -0
  91. package/node_modules/resolve/test/precedence/aaa/main.js +1 -0
  92. package/node_modules/resolve/test/precedence/aaa.js +1 -0
  93. package/node_modules/resolve/test/precedence/bbb/main.js +1 -0
  94. package/node_modules/resolve/test/precedence/bbb.js +1 -0
  95. package/node_modules/resolve/test/precedence.js +23 -0
  96. package/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  97. package/node_modules/resolve/test/resolver/baz/package.json +3 -0
  98. package/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  99. package/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  100. package/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  101. package/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
  102. package/node_modules/resolve/test/resolver/cup.coffee +1 -0
  103. package/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
  104. package/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
  105. package/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
  106. package/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
  107. package/node_modules/resolve/test/resolver/foo.js +1 -0
  108. package/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
  109. package/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
  110. package/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
  111. package/node_modules/resolve/test/resolver/mug.coffee +0 -0
  112. package/node_modules/resolve/test/resolver/mug.js +0 -0
  113. package/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
  114. package/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
  115. package/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
  116. package/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
  117. package/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  118. package/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
  119. package/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  120. package/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  121. package/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
  122. package/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
  123. package/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
  124. package/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  125. package/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  126. package/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
  127. package/node_modules/resolve/test/resolver.js +429 -0
  128. package/node_modules/resolve/test/resolver_sync.js +340 -0
  129. package/node_modules/resolve/test/subdirs.js +13 -0
  130. package/node_modules/resolve/test/symlinks.js +56 -0
  131. package/package.json +3 -3
  132. package/node_modules/builtin-modules/builtin-modules.json +0 -35
  133. package/node_modules/builtin-modules/index.js +0 -10
  134. package/node_modules/builtin-modules/license +0 -21
  135. package/node_modules/builtin-modules/package.json +0 -75
  136. package/node_modules/builtin-modules/readme.md +0 -41
  137. package/node_modules/builtin-modules/static.js +0 -2
  138. package/node_modules/is-builtin-module/index.js +0 -10
  139. package/node_modules/is-builtin-module/package.json +0 -78
  140. package/node_modules/is-builtin-module/readme.md +0 -33
@@ -0,0 +1,629 @@
1
+ ### Changelog
2
+
3
+ All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
+
5
+ #### [Unreleased](https://github.com/browserify/resolve/compare/v1.9.0...HEAD)
6
+
7
+ - [Fix] `sync`/`async`: when package.json `main` is not a string, throw an error ([`#178`][])
8
+ - [Tests] up to `v11.6`, `v10.15`, `v8.15`, `v6.16` (([`083e78c`][])
9
+ - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` (([`29a4994`][])
10
+ - [Tests] add an additional test (([`2c67936`][])
11
+
12
+ [`083e78c`]: https://github.com/browserify/resolve/commit/083e78c1ae5c1708b7d41c9ad7c608caffeddcbf
13
+ [`29a4994`]: https://github.com/browserify/resolve/commit/29a499418d54b5befe9deef1bc7c38a9174cfbd8
14
+ [`2c67936`]: https://github.com/browserify/resolve/commit/2c679363e852f7a0d570593527ea7038f0cd2c19
15
+
16
+ #### [v1.9.0](https://github.com/browserify/resolve/compare/v1.8.1...v1.9.0) - 17 December 2018
17
+
18
+ - [Fix] `sync`/`async`: fix `preserveSymlinks` option ([`#177`][])
19
+ - [Fix] `sync`/`async`: when package.json `main` is not a string, throw an error ([`#178`][])
20
+ - [Refactor] `node-modules-paths`: Change `paths` function option to receive a thunk for node modules resolution paths (([`d652f01`][])
21
+ - [Tests] up to `node` `v11.4`, `v10.14`, `v8.14`, `v6.15` (([`2b4f3a8`][])
22
+ - [New] `async`/`sync`/`node-modules-paths`: Adds support for “paths” being a function (([`7112873`][])
23
+ - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-keys`, `safe-publish-latest`, `tape` (([`5542700`][])
24
+ - [New] Implements a "normalize-options" pseudo-hook (([`f3961df`][])
25
+ - [Tests] better failure messages (([`f839d20`][])
26
+ - [Deps] update `path-parse` (([`1018c0e`][])
27
+
28
+ [`d652f01`]: https://github.com/browserify/resolve/commit/d652f018b2561f4863ffcd0f3ecdb0dfe65ee223
29
+ [`2b4f3a8`]: https://github.com/browserify/resolve/commit/2b4f3a898a3943e45cdff539b542c4ebee2b608a
30
+ [`7112873`]: https://github.com/browserify/resolve/commit/711287339aad544788a4b8b5335221cea645572c
31
+ [`5542700`]: https://github.com/browserify/resolve/commit/554270035e1997ae34865500c629888249baa304
32
+ [`f3961df`]: https://github.com/browserify/resolve/commit/f3961dfcb7b2993d935c255e65309e7028a88b8d
33
+ [`f839d20`]: https://github.com/browserify/resolve/commit/f839d20ab16ef814214d80183452d02379cbbf15
34
+ [`1018c0e`]: https://github.com/browserify/resolve/commit/1018c0e49851bfb62176d8adbc94125ae85cd158
35
+
36
+ #### [v1.8.1](https://github.com/browserify/resolve/compare/v1.8.0...v1.8.1) - 17 June 2018
37
+
38
+ - [Docs] clean up readme code (([`f5394d8`][])
39
+ - [Fix] resolution when `filename` option is passed (([`9c370c9`][])
40
+ - [Tests] up to `node` `v10.4` (([`3a64219`][])
41
+ - [Tests] improve output of symlink tests that fail on Mac (([`6f771b2`][])
42
+
43
+ [`f5394d8`]: https://github.com/browserify/resolve/commit/f5394d801350ff32be08dfc5ca37bcb677b4c08b
44
+ [`9c370c9`]: https://github.com/browserify/resolve/commit/9c370c9848eaecb36fb8e0b004930e2dd49e1e71
45
+ [`3a64219`]: https://github.com/browserify/resolve/commit/3a64219a7385d5d51f3d4ff7b3de0ce749d6cf09
46
+ [`6f771b2`]: https://github.com/browserify/resolve/commit/6f771b215b4f40b0ba0009ef564bde85212e79eb
47
+
48
+ #### [v1.8.0](https://github.com/browserify/resolve/compare/v1.7.1...v1.8.0) - 15 June 2018
49
+
50
+ - [New] include filename in error message ([`#162`][])
51
+ - [Tests] up to `node` `v10.1`, `v9.11`, `v8.11`, `v6.14`, `4.9` (([`ad16af2`][])
52
+ - Fix eslint problems and update count of tests (([`def5931`][])
53
+ - [New] add fs/promises to the list of core modules (([`756419a`][])
54
+ - [New] core: add `trace_events`, `v8/tools/arguments` (([`bae0338`][])
55
+ - [Fix] core: `_tls_legacy` is removed in node 10 (([`4225ac5`][])
56
+
57
+ [`#162`]: https://github.com/browserify/resolve/pull/162
58
+ [`ad16af2`]: https://github.com/browserify/resolve/commit/ad16af2f4f6eb1dc964f5b119f6d94bd64b2607a
59
+ [`def5931`]: https://github.com/browserify/resolve/commit/def59317704d787adcddc9695b923e65c6bf5232
60
+ [`756419a`]: https://github.com/browserify/resolve/commit/756419a94432fd753a62f5a58b797776efb543f9
61
+ [`bae0338`]: https://github.com/browserify/resolve/commit/bae033824c82153ccb4f32abdd0e70ca677968bc
62
+ [`4225ac5`]: https://github.com/browserify/resolve/commit/4225ac5f4b90d26db664ed32f5b08416fea69b86
63
+
64
+ #### [v1.7.1](https://github.com/browserify/resolve/compare/v1.7.0...v1.7.1) - 12 April 2018
65
+
66
+ - [Fix] revert proper but unintended breaking change in sync packageFilter ([`#157`][])
67
+
68
+ #### [v1.7.0](https://github.com/browserify/resolve/compare/v1.6.0...v1.7.0) - 7 April 2018
69
+
70
+ - [Fix] Make loadAsFileSync() work the same as async loadAsFile() ([`#146`][])
71
+ - [Tests] add more pathfilter tests (([`c3621a3`][])
72
+ - [Tests] add some tests for browser field (([`13fb572`][])
73
+ - [Refactor] cache default isFile functions at module level (([`fa6e6f5`][])
74
+ - [Docs] fix default “isFile” implementations (([`0f29c93`][])
75
+ - [Tests] add some tests for a non-directory basedir (([`0c18e40`][])
76
+ - [Refactor] use "basedir" instead of "y", because meaningful variable names (([`876b0b0`][])
77
+ - [Docs] fix options formatting (([`23df5f5`][])
78
+ - Minor cleanup (([`c449d48`][])
79
+ - [Fix] support `opts.package` in non-relative lookups (([`c8a2052`][])
80
+ - [Tests] work around npm SSL issue (([`04cb0bb`][])
81
+ - [Tests] add node 8 and 9 to appveyor (([`7cbd17a`][])
82
+ - [Tests] work around npm SSL issue (([`4b10996`][])
83
+
84
+ [`#146`]: https://github.com/browserify/resolve/pull/146
85
+ [`c3621a3`]: https://github.com/browserify/resolve/commit/c3621a35675b275b2b241dd367459ed7afe1c22a
86
+ [`13fb572`]: https://github.com/browserify/resolve/commit/13fb572337623622d06450696af6c15b68be26c3
87
+ [`fa6e6f5`]: https://github.com/browserify/resolve/commit/fa6e6f5a2d34377f6973701733177a280adf0511
88
+ [`0f29c93`]: https://github.com/browserify/resolve/commit/0f29c93f0c74fc4e52ec6ed6678ce0fec6347e2d
89
+ [`0c18e40`]: https://github.com/browserify/resolve/commit/0c18e40e4929ba2c9426a77079c153c43e50a025
90
+ [`876b0b0`]: https://github.com/browserify/resolve/commit/876b0b08da9fe44d81681d0c815900485536be9e
91
+ [`23df5f5`]: https://github.com/browserify/resolve/commit/23df5f526823e27e33b01333016b7f58b4f63b6f
92
+ [`c449d48`]: https://github.com/browserify/resolve/commit/c449d4809cf8461a3d54e458780902b95119a969
93
+ [`c8a2052`]: https://github.com/browserify/resolve/commit/c8a20524c7d08671c22903e70b952575b0502f7b
94
+ [`04cb0bb`]: https://github.com/browserify/resolve/commit/04cb0bb94628e560bfa4163e73637d3803591714
95
+ [`7cbd17a`]: https://github.com/browserify/resolve/commit/7cbd17ae270f9ec24ef05779c3a5e9da3e75c598
96
+ [`4b10996`]: https://github.com/browserify/resolve/commit/4b1099668477e28117c34f9db3509ff096a49190
97
+
98
+ #### [v1.6.0](https://github.com/browserify/resolve/compare/v1.5.0...v1.6.0) - 20 March 2018
99
+
100
+ - [New] add `async_hooks` core module, added in node 8 ([`#144`][])
101
+ - [New] add many missing core modules. (([`88c0778`][])
102
+ - Made loadAsFileSync() work the same as async loadAsFile(). (([`dc23387`][])
103
+ - [Tests] up to `v9.8`, `v8.10`, `v6.13` (([`315d729`][])
104
+ - [Tests] up to `node` `v9.3`, `v8.8`, `v6.12`; pin included builds to LTS (([`5091aa2`][])
105
+ - [Tests] add a failing test (([`90b1192`][])
106
+ - [Dev Deps] update `eslint`, `tape` (([`2acf953`][])
107
+ - [Tests] restore node 0.6 (([`2764758`][])
108
+ - [Dev Deps] update `eslint` (([`699a54e`][])
109
+ - [Dev Deps] update `eslint` (([`2674fad`][])
110
+
111
+ [`88c0778`]: https://github.com/browserify/resolve/commit/88c0778be359caaeb4ca74b24a7b5f7903bc39e8
112
+ [`dc23387`]: https://github.com/browserify/resolve/commit/dc23387adb93f497d67def7ee99fae48e5958fb3
113
+ [`315d729`]: https://github.com/browserify/resolve/commit/315d729afe7074ffae5d6ca6509a73d747985d45
114
+ [`5091aa2`]: https://github.com/browserify/resolve/commit/5091aa2c076b67ff762937401e81da66ef7988ca
115
+ [`90b1192`]: https://github.com/browserify/resolve/commit/90b11921181c2783209e9aa31f1e20d98c11ed17
116
+ [`2acf953`]: https://github.com/browserify/resolve/commit/2acf953ce2a94b38528372b5f8848ac95a2aabe5
117
+ [`2764758`]: https://github.com/browserify/resolve/commit/2764758aae576aef98f41af5d46f76ada3523012
118
+ [`699a54e`]: https://github.com/browserify/resolve/commit/699a54e91222dc8b3e1f0af8e9859c734d99d50a
119
+ [`2674fad`]: https://github.com/browserify/resolve/commit/2674fadcfcf2b253fdcf5e9d8564fd2b23b0b57c
120
+
121
+ #### [v1.5.0](https://github.com/browserify/resolve/compare/v1.4.0...v1.5.0) - 24 October 2017
122
+
123
+ - [New] node v8.8+ supports `http2` ([`#139`][])
124
+ - [Fix] fix broken core tests; change core.json to be an object instead of an array; fix results (([`b826f30`][])
125
+ - [Tests] up to `v8.4`; node 0.6 is failing due to travis-ci changes; allow it to fail for now. (([`e9d3a24`][])
126
+ - [Tests] up to `node` `8.7`; use `nvm install-latest-npm` so new npm doesn’t break old node (([`d0de222`][])
127
+ - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` (([`76f28a3`][])
128
+ - [Tests] on `node` `v8.8` (([`e0c5d51`][])
129
+ - [Docs] update repo URL (([`3412f98`][])
130
+ - [New] add `perf_hooks`, added in node v8.5 (([`e66117d`][])
131
+ - [Dev Deps] update `eslint` (([`5bfb072`][])
132
+
133
+ [`b826f30`]: https://github.com/browserify/resolve/commit/b826f3007dc8903b95e39984f93c68bb5e4c85b9
134
+ [`e9d3a24`]: https://github.com/browserify/resolve/commit/e9d3a24ae0a4d8e3eefc6431c918c23f7c8fc6d3
135
+ [`d0de222`]: https://github.com/browserify/resolve/commit/d0de222e4b55b67224ddec0421ee66ce8cb5ee8d
136
+ [`76f28a3`]: https://github.com/browserify/resolve/commit/76f28a3d275a63b0511449d28900ab5749f27fa5
137
+ [`e0c5d51`]: https://github.com/browserify/resolve/commit/e0c5d518abfaadc4107ca8f3f8c30caf46490444
138
+ [`3412f98`]: https://github.com/browserify/resolve/commit/3412f984a03a345b9a5ef1f0642a0308d676a2c2
139
+ [`e66117d`]: https://github.com/browserify/resolve/commit/e66117df49d9f967b46fde633770307c9d5a7066
140
+ [`5bfb072`]: https://github.com/browserify/resolve/commit/5bfb072f152c77c8247f4c06c1efa9246bbdddb0
141
+
142
+ #### [v1.4.0](https://github.com/browserify/resolve/compare/v1.3.3...v1.4.0) - 26 July 2017
143
+
144
+ - [New]: add `preserveSymlinks` option ([`#130`][])
145
+ - [Fix] `sync`: fix when package.json main = ‘.’ or main = ‘./‘ ([`#125`][])
146
+ - [Tests] up to `node` `v8.2`, `v7.10`, `v6.11`; npm 4.6+ breaks on node < 4 (([`41a3604`][])
147
+ - [Tests] fix 0.6 and linting (([`703517b`][])
148
+ - Only apps should have lockfiles (([`11fb3d8`][])
149
+ - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` (([`bc2f7bf`][])
150
+
151
+ [`41a3604`]: https://github.com/browserify/resolve/commit/41a3604f6408dbe9693febf895251db924c87a8f
152
+ [`703517b`]: https://github.com/browserify/resolve/commit/703517b78e7e0f8093a79c0a7a413a708ac82d06
153
+ [`11fb3d8`]: https://github.com/browserify/resolve/commit/11fb3d85bb107a24476bd8d764ba25b3c60c184a
154
+ [`bc2f7bf`]: https://github.com/browserify/resolve/commit/bc2f7bf29d172fa54d66cf909fb47a858f7765aa
155
+
156
+ #### [v1.3.3](https://github.com/browserify/resolve/compare/v1.3.2...v1.3.3) - 20 April 2017
157
+
158
+ - [Fix] error code MODULE_NOT_FOUND instead of ENOTDIR ([`#121`][])
159
+ - [Tests] [eslint] add `npm run lint` (([`3677928`][])
160
+ - [Tests] up to `node` `v7.7`, `v6.10`, `v4.8`; comment out OSX builds since they block linux builds. (([`1d3883c`][])
161
+ - [Fix] correctly resolve dir paths when file with the same name exists (([`a983d38`][])
162
+ - [Tests] up to `node` `v7.9` (([`0da055c`][])
163
+ - [Tests] improve failure scenarios. (([`1de578f`][])
164
+ - [Fix] `sync`: ensure that the path is a string, explicitly. (([`b7ba83d`][])
165
+ - [Dev Deps] update `eslint` (([`452fdf9`][])
166
+ - [Tests] node 0.6 can’t support an npm that understands scoped packages (([`26369cf`][])
167
+
168
+ [`3677928`]: https://github.com/browserify/resolve/commit/36779282881ec4abce32b2c9b7f7b10bcd09d953
169
+ [`1d3883c`]: https://github.com/browserify/resolve/commit/1d3883c40d55242d7dfeafa43fa782dc6f4ab4a6
170
+ [`a983d38`]: https://github.com/browserify/resolve/commit/a983d38c47ea26e57e0824f22929985ecb24faca
171
+ [`0da055c`]: https://github.com/browserify/resolve/commit/0da055cc75bebd7e0044cd4184e7c5386a7bd7de
172
+ [`1de578f`]: https://github.com/browserify/resolve/commit/1de578f2879f83ba94789041420fd3d3b929127e
173
+ [`b7ba83d`]: https://github.com/browserify/resolve/commit/b7ba83d43519c3c77af823ef1badd7f452d8b8e3
174
+ [`452fdf9`]: https://github.com/browserify/resolve/commit/452fdf981330f96d7fef88805b24e40ea24a89e1
175
+ [`26369cf`]: https://github.com/browserify/resolve/commit/26369cfe6ce4eae7404f3c003c88618f098d6814
176
+
177
+ #### [v1.3.2](https://github.com/browserify/resolve/compare/v1.2.1...v1.3.2) - 26 February 2017
178
+
179
+ - Fix prepublish script. (([`1aa1d9d`][])
180
+
181
+ [`1aa1d9d`]: https://github.com/browserify/resolve/commit/1aa1d9d9adc60691431efbde8d915c143cd54916
182
+
183
+ #### [v1.3.1](https://github.com/browserify/resolve/compare/v1.3.0...v1.3.1) - 24 February 2017
184
+
185
+ - Revert "[New] add searched extensions to error messages" (([`68a081d`][])
186
+
187
+ [`68a081d`]: https://github.com/browserify/resolve/commit/68a081d1c7ff6e0fb58aeff4b6ac06aada7812c4
188
+
189
+ #### [v1.3.0](https://github.com/browserify/resolve/compare/v1.2.0...v1.3.0) - 24 February 2017
190
+
191
+ #### [v1.2.1](https://github.com/browserify/resolve/compare/v1.3.1...v1.2.1) - 26 February 2017
192
+
193
+ - [Fix] for browserify compat, do not assume `process.versions.node` exists. ([`#120`][])
194
+ - [Fix] for browserify compat, do not assume `process.versions.node` exists. ([`#120`][])
195
+
196
+ #### [v1.2.0](https://github.com/browserify/resolve/compare/v1.1.7...v1.2.0) - 13 December 2016
197
+
198
+ - [Fix] `resolve.sync` should re-throw non `ENOENT errors. ([`#79`][])
199
+ - [New] add missing core modules, and determine them dynamically by node version. ([`#100`][][`#110`][][`#111`][][`#112`][])
200
+ - [Tests] test on every minor version of node. ([`#109`][][`#75`][][`#74`][][`#70`][])
201
+ - code style: tabs → spaces (([`0ab33b2`][])
202
+ - [Dev Deps] add `safe-publish-latest` (([`83c25dd`][])
203
+ - [Fix] Create error outside process.nextTick (([`3fa5f02`][])
204
+ - readme: update API docs link for require.resolve() (([`7e98547`][])
205
+ - [Dev Deps] update `tape` (([`764f3a2`][])
206
+ - gitignore node_modules (([`3e8a8da`][])
207
+
208
+ [`0ab33b2`]: https://github.com/browserify/resolve/commit/0ab33b29b814e030021ff2df391e60a1c52dcc46
209
+ [`83c25dd`]: https://github.com/browserify/resolve/commit/83c25dde8aa5a663bc3863d946fdc62fab5fd080
210
+ [`3fa5f02`]: https://github.com/browserify/resolve/commit/3fa5f02f2ace0683fbd42196619c4e2bbd9eef60
211
+ [`7e98547`]: https://github.com/browserify/resolve/commit/7e98547319f1dada4f26d7a24f3b92a08f85c56b
212
+ [`764f3a2`]: https://github.com/browserify/resolve/commit/764f3a231c26c370c4e6b94f0bb10166c20551b7
213
+ [`3e8a8da`]: https://github.com/browserify/resolve/commit/3e8a8da3c9d545e00e15f5bed24623eb134b2221
214
+
215
+ #### [v1.1.7](https://github.com/browserify/resolve/compare/v1.1.6...v1.1.7) - 24 January 2016
216
+
217
+ - (typo) Change againt to against ([`#83`][])
218
+ - Fix node_modules paths on Windows (([`35b2b64`][])
219
+
220
+ [`#83`]: https://github.com/browserify/resolve/pull/83
221
+ [`35b2b64`]: https://github.com/browserify/resolve/commit/35b2b642d91e9b81e7cc26b6fd19912e18901d55
222
+
223
+ #### [v1.1.6](https://github.com/browserify/resolve/compare/v1.1.5...v1.1.6) - 15 March 2015
224
+
225
+ - Use path.dirname to walk up looking for a package.json ([`#76`][])
226
+ - add back pkg assertions to pick up the root package (([`4c25e45`][])
227
+
228
+ [`4c25e45`]: https://github.com/browserify/resolve/commit/4c25e45625fea7980463fc107fc843aab7e0d993
229
+
230
+ #### [v1.1.5](https://github.com/browserify/resolve/compare/v1.1.4...v1.1.5) - 21 February 2015
231
+
232
+ - another test, not quite the failing case (([`612cac2`][])
233
+ - fix for the failing case (([`503c746`][])
234
+
235
+ [`612cac2`]: https://github.com/browserify/resolve/commit/612cac2beac41fb13b7b12a9dfdb4207391260c1
236
+ [`503c746`]: https://github.com/browserify/resolve/commit/503c746a6e64d50f2c9b18b4476ffcfed49947f2
237
+
238
+ #### [v1.1.4](https://github.com/browserify/resolve/compare/v1.1.3...v1.1.4) - 20 February 2015
239
+
240
+ - finally seems to fully handle browser field from outside foo/bar resolution (([`5b737d5`][])
241
+ - flatter nodeModules function (([`5ebb39a`][])
242
+
243
+ [`5b737d5`]: https://github.com/browserify/resolve/commit/5b737d58b38ce891ef3f06d600d0562dbbc8539c
244
+ [`5ebb39a`]: https://github.com/browserify/resolve/commit/5ebb39a19b62c052ff6201600c3d2fffb3f5fdcb
245
+
246
+ #### [v1.1.3](https://github.com/browserify/resolve/compare/v1.1.2...v1.1.3) - 17 February 2015
247
+
248
+ - re-implemented pathfilter feature nearly passes the test (([`60ff554`][])
249
+ - another precedence test (([`98d22e0`][])
250
+ - move pathfilter test to its own file (([`90826f5`][])
251
+ - path logic fix that seems to handle all the cases across this package and browserify (([`70146a5`][])
252
+ - tape everywhere (([`47bbfcd`][])
253
+ - move pathfilter files into their own dir (([`7f0a3f1`][])
254
+ - failing precedence test (([`73e958e`][])
255
+ - nearly nearly working (([`e7bffbf`][])
256
+ - packageFilter should have been giving the pkgfile as an argument, fixed (([`70b71e7`][])
257
+ - this fixes the directory precedence problem (([`caca9f9`][])
258
+ - disable faulty basedir test except on windows for now (([`3be4b79`][])
259
+ - passes pathfilter test (([`644f814`][])
260
+ - fix node_path test, was clearly wrong for some reason (([`9aa36e7`][])
261
+
262
+ [`60ff554`]: https://github.com/browserify/resolve/commit/60ff5545ec3cd15367c89c08cf3f139fa9c23796
263
+ [`98d22e0`]: https://github.com/browserify/resolve/commit/98d22e0e21dd57fe1ab8d9573c1f63903c2b7321
264
+ [`90826f5`]: https://github.com/browserify/resolve/commit/90826f575fe37cb3852de17e764b62e3754484b2
265
+ [`70146a5`]: https://github.com/browserify/resolve/commit/70146a5ebc4d96438383ada02785d4e722c6f5d9
266
+ [`47bbfcd`]: https://github.com/browserify/resolve/commit/47bbfcd9d9c8a68ce97fa37e0563930cee67093d
267
+ [`7f0a3f1`]: https://github.com/browserify/resolve/commit/7f0a3f1545f4b53f1bdd099b67561f9516693325
268
+ [`73e958e`]: https://github.com/browserify/resolve/commit/73e958e905eed000787f0596f81c212ca2cdb3b3
269
+ [`e7bffbf`]: https://github.com/browserify/resolve/commit/e7bffbf1b39b6239732c0e7fb01eeb9dad605d15
270
+ [`70b71e7`]: https://github.com/browserify/resolve/commit/70b71e7980b3235018a0f5ac0bd52b8393548beb
271
+ [`caca9f9`]: https://github.com/browserify/resolve/commit/caca9f9c3576c85d8972d25012ea5d12aeaa50f4
272
+ [`3be4b79`]: https://github.com/browserify/resolve/commit/3be4b796f1a9aadfb293b36c0c7f781ca9169f09
273
+ [`644f814`]: https://github.com/browserify/resolve/commit/644f81478c892874f9829aa6cca36ca72474db00
274
+ [`9aa36e7`]: https://github.com/browserify/resolve/commit/9aa36e77eca50e177498984fdef5d564903d3964
275
+
276
+ #### [v1.1.2](https://github.com/browserify/resolve/compare/v1.1.0...v1.1.2) - 16 February 2015
277
+
278
+ - Adding pathFilter docs ([`#67`][])
279
+ - adding pathFilter docs (([`44480ff`][])
280
+
281
+ [`#67`]: https://github.com/browserify/resolve/pull/67
282
+ [`44480ff`]: https://github.com/browserify/resolve/commit/44480ff041f791f32b80d212302180be210901a1
283
+
284
+ #### [v1.1.0](https://github.com/browserify/resolve/compare/v1.0.0...v1.1.0) - 27 January 2015
285
+
286
+ - Update docs re: input and cb args. ([`#65`][])
287
+ - Update main README--change word order for clarity ([`#55`][])
288
+ - attempts to find package.json data for deep references https://github.com/substack/node-resolve/issues/62 (([`caff2ba`][])
289
+ - formatting (([`b8d09e3`][])
290
+ - Add failing test for parent filename in error msg. (([`96d38c6`][])
291
+ - split before computing the pivot to prevent abcnode_modulesxyz from matching (([`10380e1`][])
292
+ - Utilize opts.filename when available to ID parent. (([`f6edcd9`][])
293
+
294
+ [`#65`]: https://github.com/browserify/resolve/pull/65
295
+ [`#55`]: https://github.com/browserify/resolve/pull/55
296
+ [`caff2ba`]: https://github.com/browserify/resolve/commit/caff2ba60dc5d85eaded388dc6025afd05ba183b
297
+ [`b8d09e3`]: https://github.com/browserify/resolve/commit/b8d09e3a2d679f6b61515d49eca3f6d8d0d2ac7f
298
+ [`96d38c6`]: https://github.com/browserify/resolve/commit/96d38c6aaa575d12781c28b34243b4939359a335
299
+ [`10380e1`]: https://github.com/browserify/resolve/commit/10380e16d3cf03f25941c3f1545ef73ed11bc1e1
300
+ [`f6edcd9`]: https://github.com/browserify/resolve/commit/f6edcd95ad5d27bfbdee0fa51951aa3d45d77cba
301
+
302
+ ### [v1.0.0](https://github.com/browserify/resolve/compare/v0.7.4...v1.0.0) - 11 August 2014
303
+
304
+ - reformat package.json (([`695bbc1`][])
305
+
306
+ [`695bbc1`]: https://github.com/browserify/resolve/commit/695bbc1d9eeb35339b4a01e141c6f6e1dff3a6e3
307
+
308
+ #### [v0.7.4](https://github.com/browserify/resolve/compare/v0.7.3...v0.7.4) - 25 July 2014
309
+
310
+ - merged (([`5cae82f`][])
311
+
312
+ [`5cae82f`]: https://github.com/browserify/resolve/commit/5cae82fb22cb64d5b72f703c787dc0fd418ed412
313
+
314
+ #### [v0.7.3](https://github.com/browserify/resolve/compare/v0.7.2...v0.7.3) - 25 July 2014
315
+
316
+ - cb(err) for non-string args (([`965c70b`][])
317
+
318
+ [`965c70b`]: https://github.com/browserify/resolve/commit/965c70b27ff796fc0ac3dba186d95b61d82446df
319
+
320
+ #### [v0.7.2](https://github.com/browserify/resolve/compare/v0.7.1...v0.7.2) - 25 July 2014
321
+
322
+ - failing dotdot test (([`3ee0f0e`][])
323
+ - fixes for dotdot tests (([`a67f230`][])
324
+ - failing sync dotdot test (([`55515e7`][])
325
+
326
+ [`3ee0f0e`]: https://github.com/browserify/resolve/commit/3ee0f0eb97971d246a4a3f183374f60938f1ca8a
327
+ [`a67f230`]: https://github.com/browserify/resolve/commit/a67f230133050568ca14a04c0d36aaf6bf14fa89
328
+ [`55515e7`]: https://github.com/browserify/resolve/commit/55515e7f816571fb9d71fdd6d0f012185b2eeefb
329
+
330
+ #### [v0.7.1](https://github.com/browserify/resolve/compare/v0.7.0...v0.7.1) - 9 June 2014
331
+
332
+ - [Fix] `node-modules-paths`: `opts` should be optional, and `opts.paths` should not be concatenated when omitted. ([`#96`][])
333
+ - [Refactor] consistent spacing and quotes; run some basic linting manually. (([`f63faaf`][])
334
+ - [Tests] use `path.join` more often to normalize paths across OS’s. (([`8280c53`][])
335
+ - [Tests] use `path` methods to make tests pass on both linux and Windows. (([`af9a885`][])
336
+ - [Tests] make matrix more efficient (([`7f0ce87`][])
337
+ - [Tests] fix indentation, manual linting. (([`6984dcb`][])
338
+ - [Tests] [Refactor] refactor `node-modules-paths` and add tests. (([`58b99a3`][])
339
+ - [Tests] add `appveyor` (([`caffe35`][])
340
+ - [new] Add err.code = 'MODULE_NOT_FOUND' (([`c622aef`][])
341
+ - [New] add searched extensions to error messages (([`1260d9d`][])
342
+ - node-modules-paths: absolutize the `start` path (([`9d6b7af`][])
343
+ - [Refactor] `async`: remove unnecessary slashes, since `path.join` adds them. (([`dd50615`][])
344
+ - [Tests] ensure node_path test is independent of the `tap` module’s “main” (([`ddca9ed`][])
345
+
346
+ [`f63faaf`]: https://github.com/browserify/resolve/commit/f63faaf9df5dbd8da388c674de0b14e3286e5e91
347
+ [`8280c53`]: https://github.com/browserify/resolve/commit/8280c53eae6b612f586e133052ed2b2a56ae6649
348
+ [`af9a885`]: https://github.com/browserify/resolve/commit/af9a8858a618ab64dd4bb311ef1be37822ade2b7
349
+ [`7f0ce87`]: https://github.com/browserify/resolve/commit/7f0ce871b6d2b5cb2082b04cd72ddd4055cb7a05
350
+ [`6984dcb`]: https://github.com/browserify/resolve/commit/6984dcb1407fec6af46f744ad2c63f502645bdd6
351
+ [`58b99a3`]: https://github.com/browserify/resolve/commit/58b99a36f882d7ee65df725224f204abd27379db
352
+ [`caffe35`]: https://github.com/browserify/resolve/commit/caffe358566bb3c2f9b4cbd8c0f910debfb6df3b
353
+ [`c622aef`]: https://github.com/browserify/resolve/commit/c622aefeb286e479d536601e30bb828e69f86ec3
354
+ [`1260d9d`]: https://github.com/browserify/resolve/commit/1260d9d1e2f55efb514540db9aa1b3d679f9db10
355
+ [`9d6b7af`]: https://github.com/browserify/resolve/commit/9d6b7af28c054676d6ea8a5037353ed750ea13bb
356
+ [`dd50615`]: https://github.com/browserify/resolve/commit/dd506158089f7d071d2a9f61cd4385365d177219
357
+ [`ddca9ed`]: https://github.com/browserify/resolve/commit/ddca9ed7e1d980d5ec561450875cb09463effd5a
358
+
359
+ #### [v0.7.0](https://github.com/browserify/resolve/compare/v0.6.3...v0.7.0) - 17 May 2014
360
+
361
+ - array opts.moduleDirectory tests (([`0f6d088`][])
362
+ - opts.moduleDirectory string tests (([`a15ffd6`][])
363
+ - Support more than one directory in opts.moduleDirectory. (([`4183463`][])
364
+ - formatting (([`b89f089`][])
365
+ - Remove variable leftover from 325584a685 (([`12fa78c`][])
366
+
367
+ [`0f6d088`]: https://github.com/browserify/resolve/commit/0f6d08801db6bc2044df8767226421172a2d9461
368
+ [`a15ffd6`]: https://github.com/browserify/resolve/commit/a15ffd6c20772831c41146189c117ab0a0650e0b
369
+ [`4183463`]: https://github.com/browserify/resolve/commit/41834633e84d76d86297968ba34c375f26fe4f08
370
+ [`b89f089`]: https://github.com/browserify/resolve/commit/b89f08902e8551e07d66e81a3dc33840e24266c5
371
+ [`12fa78c`]: https://github.com/browserify/resolve/commit/12fa78ce43c4363e1c9600b635d18cd295c6949f
372
+
373
+ #### [v0.6.3](https://github.com/browserify/resolve/compare/v0.6.2...v0.6.3) - 16 April 2014
374
+
375
+ - Fixed the case when main is specified as "." or "./" causing the resolve to infinite loop as documented at https://github.com/substack/node-browserify/issues/732. (([`b11f273`][])
376
+
377
+ [`b11f273`]: https://github.com/browserify/resolve/commit/b11f2739ad8c9730e1076271eff54850755e2ee1
378
+
379
+ #### [v0.6.2](https://github.com/browserify/resolve/compare/v0.6.1...v0.6.2) - 21 March 2014
380
+
381
+ - passing tests for paths (([`4f56bb6`][])
382
+ - faulty basedir does not always produce error properly in windows, because when the dirs are sliced down the final path has improper prefix, causing it to load relative to cwd (([`110168a`][])
383
+
384
+ [`4f56bb6`]: https://github.com/browserify/resolve/commit/4f56bb67fa45d35adfa6a0022cc77afbf8117234
385
+ [`110168a`]: https://github.com/browserify/resolve/commit/110168adae1dfbedcb9a12086cacf0ce68cc67f6
386
+
387
+ #### [v0.6.1](https://github.com/browserify/resolve/compare/v0.6.0...v0.6.1) - 27 November 2013
388
+
389
+ - merged the context error patches (([`8408e6e`][])
390
+
391
+ [`8408e6e`]: https://github.com/browserify/resolve/commit/8408e6e8902b4bec8c859d606f53366e42058378
392
+
393
+ #### [v0.6.0](https://github.com/browserify/resolve/compare/v0.5.1...v0.6.0) - 26 November 2013
394
+
395
+ - fixes #25: resolve modules with the same name as node stdlib modules ([`#25`][])
396
+
397
+ #### [v0.5.1](https://github.com/browserify/resolve/compare/v0.5.0...v0.5.1) - 22 September 2013
398
+
399
+ - Separate duplicated nodeModulesPaths function (([`325584a`][])
400
+ - Fix prefix for windows azure (([`b5ba043`][])
401
+
402
+ [`325584a`]: https://github.com/browserify/resolve/commit/325584a685db8f42aae3d4876ffbe64069233601
403
+ [`b5ba043`]: https://github.com/browserify/resolve/commit/b5ba0430b012d93367a4f87c304f1d4c8c22941c
404
+
405
+ #### [v0.5.0](https://github.com/browserify/resolve/compare/v0.4.3...v0.5.0) - 2 September 2013
406
+
407
+ - opts.modules => opts.moduleDirectory, documented (([`c46593d`][])
408
+ - modules folder name is configurable (([`d65a422`][])
409
+
410
+ [`c46593d`]: https://github.com/browserify/resolve/commit/c46593de74b256196d7ea12c85422698652cff10
411
+ [`d65a422`]: https://github.com/browserify/resolve/commit/d65a42238101ea284ddafb788debdad0e5a59504
412
+
413
+ #### [v0.4.3](https://github.com/browserify/resolve/compare/v0.4.2...v0.4.3) - 7 August 2013
414
+
415
+ - Fix default basedir calculation (([`cd7169b`][])
416
+ - use getCaller() in both async and sync versions (([`20f8945`][])
417
+
418
+ [`cd7169b`]: https://github.com/browserify/resolve/commit/cd7169b204b9f474b6a924adf47564f33a469f07
419
+ [`20f8945`]: https://github.com/browserify/resolve/commit/20f89456f7fc1d8e51b95ec1ab38b1ac154d9fc4
420
+
421
+ #### [v0.4.2](https://github.com/browserify/resolve/compare/v0.4.1...v0.4.2) - 3 August 2013
422
+
423
+ - Failing test case for pkg.main pointing to a directory. (([`b57a75a`][])
424
+ - Fix for failing test case where pkg.main points to directory. (([`8c4078c`][])
425
+
426
+ [`b57a75a`]: https://github.com/browserify/resolve/commit/b57a75aefc394ead20d54ed107741f1f7151b90f
427
+ [`8c4078c`]: https://github.com/browserify/resolve/commit/8c4078c9dd45c6a92f1f409d70aaccc95be3bfc6
428
+
429
+ #### [v0.4.1](https://github.com/browserify/resolve/compare/v0.4.0...v0.4.1) - 30 July 2013
430
+
431
+ - adding tests to reproduce the problem (([`ad3a477`][])
432
+ - async resolve now falls back to 'index.js' if main field in package.json is incorrect (([`62a5726`][])
433
+
434
+ [`ad3a477`]: https://github.com/browserify/resolve/commit/ad3a4772ddd7187ff38cb56e00635b37a491e1fa
435
+ [`62a5726`]: https://github.com/browserify/resolve/commit/62a572635f21bf1c28360ea5c2238be62736429b
436
+
437
+ #### [v0.4.0](https://github.com/browserify/resolve/compare/v0.3.1...v0.4.0) - 9 June 2013
438
+
439
+ - Implement async support for returning package a module was resolved from. (([`b7b2806`][])
440
+ - Document package option. (([`7f84028`][])
441
+
442
+ [`b7b2806`]: https://github.com/browserify/resolve/commit/b7b28069acb7c749a2053dbb0c8d606515954694
443
+ [`7f84028`]: https://github.com/browserify/resolve/commit/7f8402881b725938cfaf1d4835ec2fb6cee4862d
444
+
445
+ #### [v0.3.1](https://github.com/browserify/resolve/compare/v0.3.0...v0.3.1) - 29 March 2013
446
+
447
+ - use isFIFO() instead to more narrowly target <() usage (([`790cdf5`][])
448
+ - check !isDirectory() instead of isFile() so that <(echo "beep") inline bash fds work (([`c396065`][])
449
+
450
+ [`790cdf5`]: https://github.com/browserify/resolve/commit/790cdf5ab7c92bb146e8ace05ba0b26c5f51ffb3
451
+ [`c396065`]: https://github.com/browserify/resolve/commit/c3960650f1a1417e52238011e08a6da2b0d9fee4
452
+
453
+ #### [v0.3.0](https://github.com/browserify/resolve/compare/v0.2.8...v0.3.0) - 19 February 2013
454
+
455
+ - failing translated async test with parameterized readFile on account of 3-arg form (([`7033bbb`][])
456
+ - factor out .sync into lib/sync.js (([`ba7038a`][])
457
+ - updated the docs for async (([`34a958e`][])
458
+ - first async test passes (([`e427ca8`][])
459
+ - sync parity with async tests (([`d1191a9`][])
460
+ - stub out async (([`f4b02e3`][])
461
+ - factor out core into lib/ (([`a800954`][])
462
+ - synchronous example (([`3534992`][])
463
+ - adapted async test (([`c9111d2`][])
464
+ - async example (([`e1a9809`][])
465
+ - fix for async parameterized readFile (([`2d4e80e`][])
466
+ - drop 0.4, add 0.8 in travis (([`8a1ba59`][])
467
+
468
+ [`7033bbb`]: https://github.com/browserify/resolve/commit/7033bbb6e21ecfd13476ca8de247580aa2f97e7c
469
+ [`ba7038a`]: https://github.com/browserify/resolve/commit/ba7038a56d78212329b64287dfaf895b1a85cf2c
470
+ [`34a958e`]: https://github.com/browserify/resolve/commit/34a958e84b7fc4cdccd7b71f9a116027a6f3a123
471
+ [`e427ca8`]: https://github.com/browserify/resolve/commit/e427ca85b7e3b1d01b05f94783b76516b8594a03
472
+ [`d1191a9`]: https://github.com/browserify/resolve/commit/d1191a9958581a040f4f18b3aecdd50714bffc7a
473
+ [`f4b02e3`]: https://github.com/browserify/resolve/commit/f4b02e3bbf0c3b09f83cfb2b22b12b0f55afdf92
474
+ [`a800954`]: https://github.com/browserify/resolve/commit/a80095482ef2d16425e6e12759c9735d89f7f50b
475
+ [`3534992`]: https://github.com/browserify/resolve/commit/3534992946294811d20aaf9857ee453078cbe828
476
+ [`c9111d2`]: https://github.com/browserify/resolve/commit/c9111d293ab35fb611d9c65ea2f88ae8cf853f8e
477
+ [`e1a9809`]: https://github.com/browserify/resolve/commit/e1a98093094cded0a251ef36f4f2eb0adb280acb
478
+ [`2d4e80e`]: https://github.com/browserify/resolve/commit/2d4e80e139d01176bf70132bc80caed946cd6682
479
+ [`8a1ba59`]: https://github.com/browserify/resolve/commit/8a1ba593ab924995a45099e164cc7b769c44e9a0
480
+
481
+ #### [v0.2.8](https://github.com/browserify/resolve/compare/v0.2.7...v0.2.8) - 18 February 2013
482
+
483
+ - add the domain module to .core (([`2979cde`][])
484
+
485
+ [`2979cde`]: https://github.com/browserify/resolve/commit/2979cdea615fe724de62d88cb221c1d1824d0f10
486
+
487
+ #### [v0.2.7](https://github.com/browserify/resolve/compare/v0.2.6...v0.2.7) - 18 February 2013
488
+
489
+ #### [v0.2.6](https://github.com/browserify/resolve/compare/v0.2.5...v0.2.6) - 18 February 2013
490
+
491
+ #### [v0.2.5](https://github.com/browserify/resolve/compare/v0.2.4...v0.2.5) - 18 February 2013
492
+
493
+ #### [v0.2.4](https://github.com/browserify/resolve/compare/v0.2.3...v0.2.4) - 18 February 2013
494
+
495
+ - resolve '../baz' correct (([`46fe923`][])
496
+
497
+ [`46fe923`]: https://github.com/browserify/resolve/commit/46fe923c20feeceac783e67cfa84d07222bc17fa
498
+
499
+ #### [v0.2.3](https://github.com/browserify/resolve/compare/v0.2.2...v0.2.3) - 12 August 2012
500
+
501
+ - license file (([`a964396`][])
502
+ - existsSync (([`d1c1012`][])
503
+ - pass dir to packageFilter (([`3bea5b6`][])
504
+ - pkg.main may be a directory (([`3521c2f`][])
505
+ - Prioritize parent tree in nodeModulesPathsSync before fallback options.paths/ NODE_PATH equivalent, in accordance with http://nodejs.org/docs/latest/api/all.html#all_loading_from_the_global_folders (([`27fa227`][])
506
+
507
+ [`a964396`]: https://github.com/browserify/resolve/commit/a9643965438eb4fcb068a5876b317f516199879a
508
+ [`d1c1012`]: https://github.com/browserify/resolve/commit/d1c1012f14c50212ea49a9a1255c902f5ad6cb37
509
+ [`3bea5b6`]: https://github.com/browserify/resolve/commit/3bea5b6475b39e7f4974d29c6fa1e8eb8b1589af
510
+ [`3521c2f`]: https://github.com/browserify/resolve/commit/3521c2f2b93234e5a50dc47598554a76589d6d8c
511
+ [`27fa227`]: https://github.com/browserify/resolve/commit/27fa22707e87738ddde61cb4ad90508cfe0d7755
512
+
513
+ #### [v0.2.2](https://github.com/browserify/resolve/compare/v0.2.1...v0.2.2) - 30 April 2012
514
+
515
+ - fix indentation (([`98fc4a5`][])
516
+ - Updated to work with windows, tested on Windows 7 64-bit and OS X 10.6 (([`a6646cc`][])
517
+ - bump for windows fixes (([`d67d595`][])
518
+
519
+ [`98fc4a5`]: https://github.com/browserify/resolve/commit/98fc4a50b68456d497a862b9c4e4e0a79570c770
520
+ [`a6646cc`]: https://github.com/browserify/resolve/commit/a6646ccceb1a6c411d5b9dfdc97106c80d8a0a09
521
+ [`d67d595`]: https://github.com/browserify/resolve/commit/d67d5959e1be31eb67d5b62e7050bff318572373
522
+
523
+ #### [v0.2.1](https://github.com/browserify/resolve/compare/v0.2.0...v0.2.1) - 12 April 2012
524
+
525
+ - now using tap (([`b625169`][])
526
+ - using travis (([`30cc7b3`][])
527
+ - split on multiple slashes (([`ebeafab`][])
528
+ - fix splitting of paths to support windows as well (([`5e7e24b`][])
529
+
530
+ [`b625169`]: https://github.com/browserify/resolve/commit/b62516922eaaafe533806cd385017109ea057baa
531
+ [`30cc7b3`]: https://github.com/browserify/resolve/commit/30cc7b3af9299a0e08f34c314015a1395ef16ea3
532
+ [`ebeafab`]: https://github.com/browserify/resolve/commit/ebeafab4a43c6ac4df7a8a7ee578629f81b7b9e7
533
+ [`5e7e24b`]: https://github.com/browserify/resolve/commit/5e7e24bf11c48f14385886d7dd3661f786cc109b
534
+
535
+ #### [v0.2.0](https://github.com/browserify/resolve/compare/v0.1.3...v0.2.0) - 25 February 2012
536
+
537
+ - updated the core list for 0.6.11 (([`12d4c16`][])
538
+
539
+ [`12d4c16`]: https://github.com/browserify/resolve/commit/12d4c164ef99bd35c13b0f566feaa70bc3560082
540
+
541
+ #### [v0.1.3](https://github.com/browserify/resolve/compare/v0.1.2...v0.1.3) - 14 December 2011
542
+
543
+ - bump (([`2dffd07`][])
544
+ - Added readline to core modules (([`4ab55a2`][])
545
+
546
+ [`2dffd07`]: https://github.com/browserify/resolve/commit/2dffd072ce65b4aae4974e934ca5b58ec741f598
547
+ [`4ab55a2`]: https://github.com/browserify/resolve/commit/4ab55a2d4eb95be2399fe94fd5d33879271b5a9f
548
+
549
+ #### [v0.1.2](https://github.com/browserify/resolve/compare/v0.1.1...v0.1.2) - 31 October 2011
550
+
551
+ - Add opts.paths to list of node_modules directories (([`7bb6ef4`][])
552
+ - bump (([`5e3fcc6`][])
553
+
554
+ [`7bb6ef4`]: https://github.com/browserify/resolve/commit/7bb6ef4a1805523169f30b6ea38776796a714c3a
555
+ [`5e3fcc6`]: https://github.com/browserify/resolve/commit/5e3fcc63cfec322779be5435820d3236e6d13dba
556
+
557
+ #### [v0.1.1](https://github.com/browserify/resolve/compare/v0.1.0...v0.1.1) - 18 October 2011
558
+
559
+ - bump for windows paths (([`3fb86d0`][])
560
+ - Added support for Windows-style paths. (([`638951e`][])
561
+
562
+ [`3fb86d0`]: https://github.com/browserify/resolve/commit/3fb86d07c77b09a7d6fa6d2a8b89432a070a6aa0
563
+ [`638951e`]: https://github.com/browserify/resolve/commit/638951ed92fa4435d9752df30c3bcb9eb49573cd
564
+
565
+ #### [v0.1.0](https://github.com/browserify/resolve/compare/v0.0.4...v0.1.0) - 3 October 2011
566
+
567
+ - passing mock test (([`030f0d3`][])
568
+ - passing mock test with package.json (([`d2b19c8`][])
569
+ - isFile and readFileSync as parameters (([`d30c22d`][])
570
+ - doc updates and a minor bump for custom isFile and readFileSync params (([`b0af4c3`][])
571
+
572
+ [`030f0d3`]: https://github.com/browserify/resolve/commit/030f0d391e02558574bc673077fb1b4057f8358d
573
+ [`d2b19c8`]: https://github.com/browserify/resolve/commit/d2b19c893b7f8c63154c5b5ff2c419ffdc8baa0c
574
+ [`d30c22d`]: https://github.com/browserify/resolve/commit/d30c22d1e13b000016f2592d6d6f3489a2d29988
575
+ [`b0af4c3`]: https://github.com/browserify/resolve/commit/b0af4c3ac1a51acf9995cb4e078bf5619f257952
576
+
577
+ #### [v0.0.4](https://github.com/browserify/resolve/compare/v0.0.3...v0.0.4) - 21 June 2011
578
+
579
+ - bump for packageFilter and a note in the docs (([`9fbb632`][])
580
+ - new packageFilter option (([`c92c883`][])
581
+
582
+ [`9fbb632`]: https://github.com/browserify/resolve/commit/9fbb632a5c0c38641ed7c10399306a56651e0789
583
+ [`c92c883`]: https://github.com/browserify/resolve/commit/c92c883bed3e50dd8ed9a2e1d4b9fefc9f3ced64
584
+
585
+ #### [v0.0.3](https://github.com/browserify/resolve/compare/v0.0.2...v0.0.3) - 20 June 2011
586
+
587
+ - custom extensions now work (([`502b6e9`][])
588
+ - failing test for extensions (([`ce56f56`][])
589
+ - bump and a note in the docs for extensions (([`2ad8287`][])
590
+ - passing normalize test (([`055c7ce`][])
591
+
592
+ [`502b6e9`]: https://github.com/browserify/resolve/commit/502b6e9c8b9f258e5c943954467016e9c048fa0f
593
+ [`ce56f56`]: https://github.com/browserify/resolve/commit/ce56f56b4e1a5c1df495a7bf061fb0242103b4d8
594
+ [`2ad8287`]: https://github.com/browserify/resolve/commit/2ad8287bc8b34929c2074a739410d08955ccdea7
595
+ [`055c7ce`]: https://github.com/browserify/resolve/commit/055c7cea391ff0ce9cd8c585e8244f553b62f6e7
596
+
597
+ #### [v0.0.2](https://github.com/browserify/resolve/compare/v0.0.1...v0.0.2) - 19 June 2011
598
+
599
+ - failing biz test for going up and down the path directory (([`cf4f5a5`][])
600
+ - don't stop on the first node_modules since that's going away in node anyhow, all tests pass again (([`9049abf`][])
601
+
602
+ [`cf4f5a5`]: https://github.com/browserify/resolve/commit/cf4f5a58d092124c517c55dd180559f5a444eb06
603
+ [`9049abf`]: https://github.com/browserify/resolve/commit/9049abfb60cac49bb547b8ca02cc2617d406ff1a
604
+
605
+ #### v0.0.1
606
+
607
+ - implementation seems to work but no tests yet (([`5218f01`][])
608
+ - a package.json all up in this (([`4084043`][])
609
+ - new resolve.{core,isCore} with tests and documentation, bump to 0.0.1 (([`a9ef081`][])
610
+ - failing foo test (([`463b108`][])
611
+ - readme before any code (([`7885443`][])
612
+ - opts.path => opts.basedir, more descriptive I think (([`78010b1`][])
613
+ - failing bar test (([`c40c5c1`][])
614
+ - passing baz test to check package.json resolution (([`410635e`][])
615
+ - a path.resolve() fixed the relative loads (([`dfef4b6`][])
616
+ - passing the bar test after taking out the dirname() around y (([`eda2247`][])
617
+ - trailing comma in the package.json (([`2032753`][])
618
+
619
+ [`5218f01`]: https://github.com/browserify/resolve/commit/5218f0106e78edce4cfb905d0ea4492ed3fd38af
620
+ [`4084043`]: https://github.com/browserify/resolve/commit/40840435a621120db78126c1792df7fdd0570703
621
+ [`a9ef081`]: https://github.com/browserify/resolve/commit/a9ef081a4897e9882bf6bc6b31457c53b8d0fc0d
622
+ [`463b108`]: https://github.com/browserify/resolve/commit/463b108dd6e750196cba150348bd68397522c908
623
+ [`7885443`]: https://github.com/browserify/resolve/commit/7885443d8a3dba7223b1bfca2d62cafc08a46436
624
+ [`78010b1`]: https://github.com/browserify/resolve/commit/78010b1f91251447d1e74c6ac9cd0baebc6ddf60
625
+ [`c40c5c1`]: https://github.com/browserify/resolve/commit/c40c5c14038acbe8bec91cf979d12382c2e6ddfe
626
+ [`410635e`]: https://github.com/browserify/resolve/commit/410635ef6226c030f74c4475e73724a01a102896
627
+ [`dfef4b6`]: https://github.com/browserify/resolve/commit/dfef4b6185d02259c119a10c8a938e1ab148b140
628
+ [`eda2247`]: https://github.com/browserify/resolve/commit/eda22479bd47c5d0b2e8a88851d9ffabbea2329c
629
+ [`2032753`]: https://github.com/browserify/resolve/commit/20327532053284676a269ec2441a87f16456fbf3
@@ -0,0 +1,18 @@
1
+ This software is released under the MIT license:
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7
+ the Software, and to permit persons to whom the Software is furnished to do so,
8
+ subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.