File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ if (process.argv[2] === '--firstpass') {
2121
2222// Actually create the contents only once AsyncRewriter has actually been
2323// compiled.
24- const AsyncRewriter = require ( '../lib ' ) . default ;
24+ const AsyncRewriter = require ( '../' ) . default ;
2525const rewriter = new AsyncRewriter ( ) ;
2626const runtimeSupportCode = rewriter . process (
2727 rewriter . unprocessedRuntimeSupportCode ( ) + fs . readFileSync ( inJS , 'utf8' )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as babel from '@babel/core';
22import type * as BabelTypes from '@babel/types' ;
33import { promises as fs } from 'fs' ;
44import path from 'path' ;
5- import { signatures } from '../src ' ;
5+ import { signatures } from '../' ;
66import enUs from '../../i18n/src/locales/en_US' ;
77
88function applyAsyncRewriterChanges ( ) {
Original file line number Diff line number Diff line change 11/* eslint-disable no-console */
2- import { signatures } from '../lib ' ;
2+ import { signatures } from '../' ;
33
44Object . keys ( signatures )
55 . sort ( )
You can’t perform that action at this time.
0 commit comments