Skip to content

Commit d7aa878

Browse files
committed
More
1 parent dd8c192 commit d7aa878

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

File renamed without changes.

src/copy-binary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable no-console */
22
import * as fs from 'node:fs';
33
import * as path from 'node:path';
4-
import { identifier } from './identifier';
4+
import { identifier } from './constants';
55

66
const source = path.join(__dirname, '..', 'build', 'Release', 'stack-trace.node');
77
const target = path.join(__dirname, '..', 'lib', `stack-trace-${identifier}.node`);

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { spawnSync } from 'node:child_process';
44
import * as path from 'node:path';
55
import { env } from 'node:process';
66
import { threadId } from 'node:worker_threads';
7+
import { abi, arch, identifier, platform, stdlib } from './constants';
78
import { copyBinary } from './copy-binary';
8-
import { abi, arch, identifier, platform, stdlib } from './identifier';
99

1010
type AsyncStorageArgs = {
1111
/** The AsyncLocalStorage instance used to fetch the store */

0 commit comments

Comments
 (0)