Bump packages to fix linter

This commit is contained in:
Henry Mercer 2023-01-18 20:50:03 +00:00
parent ed9506bbaf
commit 0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions

View file

@ -1,8 +1,8 @@
'use strict';
const path = require('path');
const url = require('url');
const v8 = require('v8');
const {Worker} = require('worker_threads');
const path = require('node:path');
const url = require('node:url');
const v8 = require('node:v8');
const {Worker} = require('node:worker_threads');
const {
classify,

View file

@ -1,2 +0,0 @@
export {default} from '../index.js';
export * from '../index.js';

12
node_modules/ava/entrypoints/main.d.cts generated vendored Normal file
View file

@ -0,0 +1,12 @@
import type {TestFn} from '../types/test-fn.cjs';
export * from '../types/assertions.cjs';
export * from '../types/try-fn.cjs';
export * from '../types/test-fn.cjs';
export * from '../types/subscribable.cjs';
/** Call to declare a test, or chain to declare hooks or test modifiers */
declare const test: TestFn;
/** Call to declare a test, or chain to declare hooks or test modifiers */
export default test;

12
node_modules/ava/entrypoints/main.d.ts generated vendored Normal file
View file

@ -0,0 +1,12 @@
import type {TestFn} from '../types/test-fn.cjs';
export * from '../types/assertions.cjs';
export * from '../types/try-fn.cjs';
export * from '../types/test-fn.cjs';
export * from '../types/subscribable.cjs';
/** Call to declare a test, or chain to declare hooks or test modifiers */
declare const test: TestFn;
/** Call to declare a test, or chain to declare hooks or test modifiers */
export default test;

View file

@ -1 +1,6 @@
export * from '../plugin.js'
import type {SharedWorker} from '../types/shared-worker.cjs';
export function registerSharedWorker<Data = unknown>(options: SharedWorker.Plugin.RegistrationOptions<'ava-4', Data>): SharedWorker.Plugin.Protocol<Data>;
// Add overloads for additional protocols.
export type {SharedWorker} from '../types/shared-worker.cjs';

6
node_modules/ava/entrypoints/plugin.d.ts generated vendored Normal file
View file

@ -0,0 +1,6 @@
import type {SharedWorker} from '../types/shared-worker.cjs';
export function registerSharedWorker<Data = unknown>(options: SharedWorker.Plugin.RegistrationOptions<'ava-4', Data>): SharedWorker.Plugin.Protocol<Data>;
// Add overloads for additional protocols.
export type {SharedWorker} from '../types/shared-worker.cjs';