1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
From: Yadd <yadd@debian.org>
Date: Thu, 1 Aug 2024 09:28:06 +0000
Subject: use quickjs-emscripten
Forwarded: not-needed
Last-Update: 2023-11-28
---
packages/degenerator/src/compile.ts | 2 +-
packages/degenerator/test/test.ts | 2 +-
packages/pac-proxy-agent/src/index.ts | 2 +-
packages/pac-resolver/src/index.ts | 2 +-
packages/pac-resolver/test/test.ts | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
--- a/packages/degenerator/src/compile.ts
+++ b/packages/degenerator/src/compile.ts
@@ -5,7 +5,7 @@
QuickJSContext,
QuickJSHandle,
QuickJSWASMModule,
-} from '@tootallnate/quickjs-emscripten';
+} from 'quickjs-emscripten';
import type { DegeneratorNames } from './degenerator';
export interface CompileOptions {
--- a/packages/degenerator/test/test.ts
+++ b/packages/degenerator/test/test.ts
@@ -5,7 +5,7 @@
import {
getQuickJS,
type QuickJSWASMModule,
-} from '@tootallnate/quickjs-emscripten';
+} from 'quickjs-emscripten';
describe('degenerator()', () => {
it('should support "async" output functions', () => {
--- a/packages/pac-proxy-agent/src/index.ts
+++ b/packages/pac-proxy-agent/src/index.ts
@@ -20,7 +20,7 @@
FindProxyForURL,
PacResolverOptions,
} from 'pac-resolver';
-import { getQuickJS } from '@tootallnate/quickjs-emscripten';
+import { getQuickJS } from 'quickjs-emscripten';
const debug = createDebug('pac-proxy-agent');
--- a/packages/pac-resolver/src/index.ts
+++ b/packages/pac-resolver/src/index.ts
@@ -16,7 +16,7 @@
import shExpMatch from './shExpMatch';
import timeRange from './timeRange';
import weekdayRange from './weekdayRange';
-import type { QuickJSWASMModule } from '@tootallnate/quickjs-emscripten';
+import type { QuickJSWASMModule } from 'quickjs-emscripten';
/**
* Returns an asynchronous `FindProxyForURL()` function
--- a/packages/pac-resolver/test/test.ts
+++ b/packages/pac-resolver/test/test.ts
@@ -5,7 +5,7 @@
import {
getQuickJS,
type QuickJSWASMModule,
-} from '@tootallnate/quickjs-emscripten';
+} from 'quickjs-emscripten';
type FindProxyForURLFn = ReturnType<typeof createPacResolver>;
|