We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 231b794 commit fdeeb03Copy full SHA for fdeeb03
packages/async-rewriter2/scripts/make-runtime-support.js
@@ -21,7 +21,7 @@ if (process.argv[2] === '--firstpass') {
21
22
// Actually create the contents only once AsyncRewriter has actually been
23
// compiled.
24
-const AsyncRewriter = require('../lib').default;
+const AsyncRewriter = require('../').default;
25
const rewriter = new AsyncRewriter();
26
const runtimeSupportCode = rewriter.process(
27
rewriter.unprocessedRuntimeSupportCode() + fs.readFileSync(inJS, 'utf8')
packages/shell-api/scripts/report-supported-api.ts
@@ -1,5 +1,5 @@
1
/* eslint-disable no-console */
2
-import { signatures } from '../lib';
+import { signatures } from '../';
3
4
Object.keys(signatures)
5
.sort()
0 commit comments