Skip to content

Commit

Permalink
refactor(util): change exported.ts to index.ts (#1838)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnpnl authored Jul 30, 2020
1 parent c945c43 commit bf5d1d3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/util/exported.spec.ts → src/util/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createJestPreset } from '../config/create-jest-preset'
import { pathsToModuleNameMapper } from '../config/paths-to-module-name-mapper'

import * as subject from './exported'
import * as subject from './index'
import { mocked } from './testing'

describe('exported helpers', () => {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion utils/index.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from '../dist/util/exported'
export * from '../dist/util'
2 changes: 1 addition & 1 deletion utils/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('../dist/util/exported')
module.exports = require('../dist/util')

0 comments on commit bf5d1d3

Please sign in to comment.