Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
Co-Authored-By: Simen Bekkhus <[email protected]>
  • Loading branch information
2 people authored and Giancarlo Anemone committed Apr 9, 2020
1 parent fe696bf commit 5f44e2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
8 changes: 1 addition & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,7 @@
- `[babel-preset-jest]` Enable all syntax plugins not enabled by default that works on current version of Node ([#9774](https://github.com/facebook/jest/pull/9774))
- `[jest-circus]` Enable writing async test event handlers ([#9397](https://github.com/facebook/jest/pull/9397))
- `[jest-runtime, @jest/transformer]` Support passing `supportsDynamicImport` and `supportsStaticESM` ([#9597](https://github.com/facebook/jest/pull/9597))
- `[@jest/core]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732/files))
- `[@jest/transform]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732/files))
- `[jest-cli]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732/files))
- `[jest-config]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732/files))
- `[jest-haste-map]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732/files))
- `[jest-resolve]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732/files))
- `[jest-runtime]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732/files))
- `[*]` Respect NODE_PRESERVE_SYMLINKS environment variable when resolving file paths ([#9732](https://github.com/facebook/jest/pull/9732))

### Chore & Maintenance

Expand Down
8 changes: 4 additions & 4 deletions packages/jest-resolve/src/defaultResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
*/

import * as fs from 'fs';
import { sync as resolveSync } from 'resolve';
import { sync as browserResolve } from 'browser-resolve';
import { sync as _realpath } from 'realpath-native';
import {sync as resolveSync} from 'resolve';
import {sync as browserResolve} from 'browser-resolve';
import {sync as _realpath} from 'realpath-native';
import pnpResolver from 'jest-pnp-resolver';
import type { Config } from '@jest/types';
import type {Config} from '@jest/types';

const PRESERVE_SYMLINKS = process.env.NODE_PRESERVE_SYMLINKS;
function realpath(p: string) {
Expand Down

0 comments on commit 5f44e2a

Please sign in to comment.