Skip to content

Commit

Permalink
fix: move stage2.ts to src (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoboucas committed Sep 13, 2022
1 parent 9f9fea4 commit 0d14125
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno/lib/stage2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { build, LoadResponse } from 'https://deno.land/x/eszip@v0.28.0/mod.ts'

import * as path from 'https://deno.land/std@0.127.0/path/mod.ts'

import type { InputFunction, WriteStage2Options } from '../../common/stage2.ts'
import type { InputFunction, WriteStage2Options } from '../../src/stage2.ts'
import { PUBLIC_SPECIFIER, STAGE2_SPECIFIER, virtualRoot } from './consts.ts'
import { inlineModule, loadFromVirtualRoot, loadWithRetry } from './common.ts'

Expand Down
2 changes: 1 addition & 1 deletion src/formats/eszip.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { join, resolve } from 'path'
import { fileURLToPath } from 'url'

import type { WriteStage2Options } from '../../common/stage2.js'
import { DenoBridge } from '../bridge.js'
import type { Bundle } from '../bundle.js'
import { wrapBundleError } from '../bundle_error.js'
import { EdgeFunction } from '../edge_function.js'
import { ImportMap } from '../import_map.js'
import type { WriteStage2Options } from '../stage2.js'
import { getFileHash } from '../utils/sha256.js'

interface BundleESZIPOptions {
Expand Down
File renamed without changes.

0 comments on commit 0d14125

Please sign in to comment.