diff --git a/packages/db/package.json b/packages/db/package.json index ffcf2a7421..829da3eaa8 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -66,8 +66,7 @@ "build": "astro-scripts build \"src/**/*.ts\" && tsc && pnpm types:virtual", "build:ci": "astro-scripts build \"src/**/*.ts\"", "dev": "astro-scripts dev \"src/**/*.ts\"", - "test": "mocha --exit --timeout 20000 \"test/*.js\" \"test/unit/**/*.js\"", - "test:match": "mocha --timeout 20000 \"test/*.js\" \"test/unit/*.js\" -g" + "test": "astro-scripts test \"test/**/*.test.js\"" }, "dependencies": { "@astrojs/studio": "workspace:*", @@ -90,14 +89,11 @@ "@types/chai": "^4.3.16", "@types/deep-diff": "^1.0.5", "@types/diff": "^5.2.1", - "@types/mocha": "^10.0.6", "@types/prompts": "^2.4.9", "@types/yargs-parser": "^21.0.3", "astro": "workspace:*", "astro-scripts": "workspace:*", - "chai": "^5.1.1", "cheerio": "1.0.0-rc.12", - "mocha": "^10.4.0", "typescript": "^5.4.5", "vite": "^5.2.11" } diff --git a/packages/db/test/basics.test.js b/packages/db/test/basics.test.js index d944b1c48a..58e23ac7f4 100644 --- a/packages/db/test/basics.test.js +++ b/packages/db/test/basics.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import { load as cheerioLoad } from 'cheerio'; import testAdapter from '../../astro/test/test-adapter.js'; import { loadFixture } from '../../astro/test/test-utils.js'; @@ -30,8 +31,14 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const ul = $('.authors-list'); - expect(ul.children()).to.have.a.lengthOf(5); - expect(ul.children().eq(0).text()).to.equal('Ben'); + assert.equal( + ul.children().length, + 5 + ); + assert.match( + ul.children().eq(0).text(), + /Ben/ + ) }); it('Allows expression defaults for date columns', async () => { @@ -39,7 +46,7 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeAdded = $($('.themes-list .theme-added')[0]).text(); - expect(new Date(themeAdded).getTime()).to.not.be.NaN; + assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false); }); it('Defaults can be overridden for dates', async () => { @@ -47,7 +54,7 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeAdded = $($('.themes-list .theme-added')[1]).text(); - expect(new Date(themeAdded).getTime()).to.not.be.NaN; + assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false); }); it('Allows expression defaults for text columns', async () => { @@ -55,7 +62,7 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeOwner = $($('.themes-list .theme-owner')[0]).text(); - expect(themeOwner).to.equal(''); + assert.equal(themeOwner, ''); }); it('Allows expression defaults for boolean columns', async () => { @@ -63,20 +70,20 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeDark = $($('.themes-list .theme-dark')[0]).text(); - expect(themeDark).to.equal('dark mode'); + assert.match(themeDark, /dark mode/); }); it('text fields an be used as references', async () => { const html = await fixture.fetch('/login').then((res) => res.text()); const $ = cheerioLoad(html); - expect($('.session-id').text()).to.equal('12345'); - expect($('.username').text()).to.equal('Mario'); + assert.match($('.session-id').text(), /12345/); + assert.match($('.username').text(), /Mario/); }); it('Prints authors from raw sql call', async () => { const json = await fixture.fetch('run.json').then((res) => res.json()); - expect(json).to.deep.equal({ + assert.deepEqual(json, { columns: ['_id', 'name', 'age2'], columnTypes: ['INTEGER', 'TEXT', 'INTEGER'], rows: [ @@ -111,8 +118,14 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const ul = $('.authors-list'); - expect(ul.children()).to.have.a.lengthOf(5); - expect(ul.children().eq(0).text()).to.equal('Ben'); + assert.equal( + ul.children().length, + 5 + ); + assert.match( + ul.children().eq(0).text(), + /Ben/ + ) }); it('Allows expression defaults for date columns', async () => { @@ -120,7 +133,7 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeAdded = $($('.themes-list .theme-added')[0]).text(); - expect(new Date(themeAdded).getTime()).to.not.be.NaN; + assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false); }); it('Defaults can be overridden for dates', async () => { @@ -128,7 +141,7 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeAdded = $($('.themes-list .theme-added')[1]).text(); - expect(new Date(themeAdded).getTime()).to.not.be.NaN; + assert.equal(Number.isNaN(new Date(themeAdded).getTime()), false); }); it('Allows expression defaults for text columns', async () => { @@ -136,7 +149,8 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeOwner = $($('.themes-list .theme-owner')[0]).text(); - expect(themeOwner).to.equal(''); + assert.equal(themeOwner, ''); + }); it('Allows expression defaults for boolean columns', async () => { @@ -144,20 +158,21 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const themeDark = $($('.themes-list .theme-dark')[0]).text(); - expect(themeDark).to.equal('dark mode'); + assert.match(themeDark, /dark mode/); + }); it('text fields an be used as references', async () => { const html = await fixture.fetch('/login').then((res) => res.text()); const $ = cheerioLoad(html); - expect($('.session-id').text()).to.equal('12345'); - expect($('.username').text()).to.equal('Mario'); + assert.match($('.session-id').text(), /12345/); + assert.match($('.username').text(), /Mario/); }); it('Prints authors from raw sql call', async () => { const json = await fixture.fetch('run.json').then((res) => res.json()); - expect(json).to.deep.equal({ + assert.deepEqual(json, { columns: ['_id', 'name', 'age2'], columnTypes: ['INTEGER', 'TEXT', 'INTEGER'], rows: [ @@ -195,7 +210,9 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const ul = $('.authors-list'); - expect(ul.children()).to.have.a.lengthOf(5); + assert.equal( + ul.children().length,5 + ) }); }); }); diff --git a/packages/db/test/db-in-src.test.js b/packages/db/test/db-in-src.test.js index 460438001f..5445585b46 100644 --- a/packages/db/test/db-in-src.test.js +++ b/packages/db/test/db-in-src.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import { load as cheerioLoad } from 'cheerio'; import testAdapter from '../../astro/test/test-adapter.js'; import { loadFixture } from '../../astro/test/test-utils.js'; @@ -30,8 +31,14 @@ describe('astro:db', () => { const $ = cheerioLoad(html); const ul = $('.users-list'); - expect(ul.children()).to.have.a.lengthOf(1); - expect($('.users-list li').text()).to.equal('Mario'); + assert.equal( + ul.children().length, + 1 + ); + assert.match( + $('.users-list li').text(), + /Mario/ + ) }); }); }); diff --git a/packages/db/test/error-handling.test.js b/packages/db/test/error-handling.test.js index 9d40507b2d..01b701346b 100644 --- a/packages/db/test/error-handling.test.js +++ b/packages/db/test/error-handling.test.js @@ -1,6 +1,7 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; import { loadFixture } from '../../astro/test/test-utils.js'; import { setupRemoteDbServer } from './test-utils.js'; +import assert from "node:assert/strict" const foreignKeyConstraintError = 'LibsqlError: SQLITE_CONSTRAINT_FOREIGNKEY: FOREIGN KEY constraint failed'; @@ -26,10 +27,10 @@ describe('astro:db - error handling', () => { it('Raises foreign key constraint LibsqlError', async () => { const json = await fixture.fetch('/foreign-key-constraint.json').then((res) => res.json()); - expect(json).to.deep.equal({ + assert.deepEqual(json, { message: foreignKeyConstraintError, code: 'SQLITE_CONSTRAINT_FOREIGNKEY', - }); + }) }); }); @@ -47,10 +48,10 @@ describe('astro:db - error handling', () => { it('Raises foreign key constraint LibsqlError', async () => { const json = await fixture.readFile('/foreign-key-constraint.json'); - expect(JSON.parse(json)).to.deep.equal({ + assert.deepEqual(JSON.parse(json), { message: foreignKeyConstraintError, code: 'SQLITE_CONSTRAINT_FOREIGNKEY', - }); + }) }); }); }); diff --git a/packages/db/test/integration-only.test.js b/packages/db/test/integration-only.test.js index dd5222f2d6..290fbc5dbf 100644 --- a/packages/db/test/integration-only.test.js +++ b/packages/db/test/integration-only.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import { load as cheerioLoad } from 'cheerio'; import { loadFixture } from '../../astro/test/test-utils.js'; @@ -25,8 +26,14 @@ describe('astro:db with only integrations, no user db config', () => { const $ = cheerioLoad(html); const ul = $('ul.menu'); - expect(ul.children()).to.have.a.lengthOf(4); - expect(ul.children().eq(0).text()).to.equal('Pancakes'); + assert.equal( + ul.children().length, + 4 + ); + assert.match( + ul.children().eq(0).text(), + /Pancakes/ + ) }); }); @@ -40,8 +47,14 @@ describe('astro:db with only integrations, no user db config', () => { const $ = cheerioLoad(html); const ul = $('ul.menu'); - expect(ul.children()).to.have.a.lengthOf(4); - expect(ul.children().eq(0).text()).to.equal('Pancakes'); + assert.equal( + ul.children().length, + 4 + ); + assert.match( + ul.children().eq(0).text(), + /Pancakes/ + ) }); }); }); diff --git a/packages/db/test/integrations.test.js b/packages/db/test/integrations.test.js index 167292ba39..d7a8a2d77c 100644 --- a/packages/db/test/integrations.test.js +++ b/packages/db/test/integrations.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import { load as cheerioLoad } from 'cheerio'; import { loadFixture } from '../../astro/test/test-utils.js'; @@ -27,8 +28,14 @@ describe('astro:db with integrations', () => { const $ = cheerioLoad(html); const ul = $('.authors-list'); - expect(ul.children()).to.have.a.lengthOf(5); - expect(ul.children().eq(0).text()).to.equal('Ben'); + assert.equal( + ul.children().length, + 5 + ); + assert.match( + ul.children().eq(0).text(), + /Ben/ + ) }); it('Prints the list of menu items from integration-defined table', async () => { @@ -36,8 +43,14 @@ describe('astro:db with integrations', () => { const $ = cheerioLoad(html); const ul = $('ul.menu'); - expect(ul.children()).to.have.a.lengthOf(4); - expect(ul.children().eq(0).text()).to.equal('Pancakes'); + assert.equal( + ul.children().length, + 4 + ); + assert.match( + ul.children().eq(0).text(), + /Pancakes/ + ) }); }); @@ -51,8 +64,14 @@ describe('astro:db with integrations', () => { const $ = cheerioLoad(html); const ul = $('.authors-list'); - expect(ul.children()).to.have.a.lengthOf(5); - expect(ul.children().eq(0).text()).to.equal('Ben'); + assert.equal( + ul.children().length, + 5 + ); + assert.match( + ul.children().eq(0).text(), + /Ben/ + ) }); it('Prints the list of menu items from integration-defined table', async () => { @@ -60,8 +79,14 @@ describe('astro:db with integrations', () => { const $ = cheerioLoad(html); const ul = $('ul.menu'); - expect(ul.children()).to.have.a.lengthOf(4); - expect(ul.children().eq(0).text()).to.equal('Pancakes'); + assert.equal( + ul.children().length, + 4 + ); + assert.match( + ul.children().eq(0).text(), + /Pancakes/ + ) }); }); }); diff --git a/packages/db/test/local-prod.test.js b/packages/db/test/local-prod.test.js index 4796bfc9be..1fb8d1436d 100644 --- a/packages/db/test/local-prod.test.js +++ b/packages/db/test/local-prod.test.js @@ -1,6 +1,7 @@ import { relative } from 'path'; import { fileURLToPath } from 'url'; -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import testAdapter from '../../astro/test/test-adapter.js'; import { loadFixture } from '../../astro/test/test-utils.js'; @@ -29,7 +30,7 @@ describe('astro:db local database', () => { const app = await fixture.loadTestAdapterApp(); const request = new Request('http://example.com/'); const response = await app.render(request); - expect(response.status).to.equal(200); + assert.equal(response.status, 200); }); }); @@ -50,7 +51,7 @@ describe('astro:db local database', () => { const app = await fixture.loadTestAdapterApp(); const request = new Request('http://example.com/'); const response = await app.render(request); - expect(response.status).to.equal(200); + assert.equal(response.status, 200); }); }); @@ -63,8 +64,8 @@ describe('astro:db local database', () => { } catch (err) { buildError = err; } - - expect(buildError).to.be.an('Error'); + + assert.equal(buildError instanceof Error, true) }); it('should throw during the build for hybrid output', async () => { @@ -81,8 +82,8 @@ describe('astro:db local database', () => { } catch (err) { buildError = err; } - - expect(buildError).to.be.an('Error'); + + assert.equal(buildError instanceof Error, true) }); }); }); diff --git a/packages/db/test/no-seed.test.js b/packages/db/test/no-seed.test.js index 82e14d3898..7641f909fa 100644 --- a/packages/db/test/no-seed.test.js +++ b/packages/db/test/no-seed.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import { load as cheerioLoad } from 'cheerio'; import { loadFixture } from '../../astro/test/test-utils.js'; @@ -25,8 +26,14 @@ describe('astro:db with no seed file', () => { const $ = cheerioLoad(html); const ul = $('.authors-list'); - expect(ul.children()).to.have.a.lengthOf(5); - expect(ul.children().eq(0).text()).to.equal('Ben'); + assert.equal( + ul.children().length, + 5 + ); + assert.match( + ul.children().eq(0).text(), + /Ben/ + ) }); }); @@ -40,8 +47,14 @@ describe('astro:db with no seed file', () => { const $ = cheerioLoad(html); const ul = $('.authors-list'); - expect(ul.children()).to.have.a.lengthOf(5); - expect(ul.children().eq(0).text()).to.equal('Ben'); + assert.equal( + ul.children().length, + 5 + ); + assert.match( + ul.children().eq(0).text(), + /Ben/ + ) }); }); }); diff --git a/packages/db/test/ssr-no-apptoken.test.js b/packages/db/test/ssr-no-apptoken.test.js index a79ed3e12b..e8c7ba69bd 100644 --- a/packages/db/test/ssr-no-apptoken.test.js +++ b/packages/db/test/ssr-no-apptoken.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import testAdapter from '../../astro/test/test-adapter.js'; import { loadFixture } from '../../astro/test/test-utils.js'; import { setupRemoteDbServer } from './test-utils.js'; @@ -26,11 +27,11 @@ describe('missing app token', () => { it('Errors as runtime', async () => { const app = await fixture.loadTestAdapterApp(); const request = new Request('http://example.com/'); + const response = await app.render(request); try { - const response = await app.render(request); await response.text(); } catch { - expect(response.status).to.equal(501); + assert.equal(response.status, 501) } }); }); diff --git a/packages/db/test/static-remote.test.js b/packages/db/test/static-remote.test.js index 492a0d385c..42b18b1a4d 100644 --- a/packages/db/test/static-remote.test.js +++ b/packages/db/test/static-remote.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it, before, after } from "node:test"; +import assert from "node:assert/strict"; import { load as cheerioLoad } from 'cheerio'; import { loadFixture } from '../../astro/test/test-utils.js'; import { setupRemoteDbServer } from './test-utils.js'; @@ -28,7 +29,7 @@ describe('astro:db', () => { const html = await fixture.readFile('/index.html'); const $ = cheerioLoad(html); - expect($('li').length).to.equal(1); + assert.equal($('li').length, 1) }); it('Returns correct shape from db.run()', async () => { diff --git a/packages/db/test/unit/column-queries.test.js b/packages/db/test/unit/column-queries.test.js index ef4ac96937..62db6b1107 100644 --- a/packages/db/test/unit/column-queries.test.js +++ b/packages/db/test/unit/column-queries.test.js @@ -1,5 +1,5 @@ -import { expect } from 'chai'; -import { describe, it } from 'mocha'; +import { describe, it } from "node:test"; +import assert from "node:assert/strict"; import { getMigrationQueries, getTableChangeQueries, @@ -44,14 +44,14 @@ describe('column queries', () => { const oldTables = { [TABLE_NAME]: userInitial }; const newTables = { [TABLE_NAME]: userInitial }; const { queries } = await configChangeQueries(oldTables, newTables); - expect(queries).to.deep.equal([]); + assert.deepEqual(queries, []); }); it('should create table for new tables', async () => { const oldTables = {}; const newTables = { [TABLE_NAME]: userInitial }; const { queries } = await configChangeQueries(oldTables, newTables); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE "${TABLE_NAME}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL UNIQUE, "mi" text)`, ]); }); @@ -60,7 +60,7 @@ describe('column queries', () => { const oldTables = { [TABLE_NAME]: userInitial }; const newTables = {}; const { queries } = await configChangeQueries(oldTables, newTables); - expect(queries).to.deep.equal([`DROP TABLE "${TABLE_NAME}"`]); + assert.deepEqual(queries, [`DROP TABLE "${TABLE_NAME}"`]); }); it('should error if possible table rename is detected', async () => { @@ -73,7 +73,7 @@ describe('column queries', () => { } catch (e) { error = e.message; } - expect(error).to.include.string('Potential table rename detected'); + assert.match(error, /Potential table rename detected/); }); it('should error if possible column rename is detected', async () => { @@ -93,14 +93,14 @@ describe('column queries', () => { } catch (e) { error = e.message; } - expect(error).to.include.string('Potential column rename detected'); + assert.match(error, /Potential column rename detected/); }); }); describe('getTableChangeQueries', () => { it('should be empty when tables are the same', async () => { const { queries } = await userChangeQueries(userInitial, userInitial); - expect(queries).to.deep.equal([]); + assert.deepEqual(queries, []); }); it('should return warning if column type change introduces data loss', async () => { @@ -117,11 +117,11 @@ describe('column queries', () => { }, }); const { queries, confirmations } = await userChangeQueries(blogInitial, blogFinal); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'DROP TABLE "Users"', 'CREATE TABLE "Users" (_id INTEGER PRIMARY KEY, "date" text NOT NULL)', ]); - expect(confirmations.length).to.equal(1); + assert.equal(confirmations.length, 1) }); it('should return warning if new required column added', async () => { @@ -136,11 +136,11 @@ describe('column queries', () => { }, }); const { queries, confirmations } = await userChangeQueries(blogInitial, blogFinal); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'DROP TABLE "Users"', 'CREATE TABLE "Users" (_id INTEGER PRIMARY KEY, "date" text NOT NULL)', ]); - expect(confirmations.length).to.equal(1); + assert.equal(confirmations.length, 1) }); it('should return warning if non-number primary key with no default added', async () => { @@ -155,11 +155,11 @@ describe('column queries', () => { }, }); const { queries, confirmations } = await userChangeQueries(blogInitial, blogFinal); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'DROP TABLE "Users"', 'CREATE TABLE "Users" ("id" text PRIMARY KEY)', ]); - expect(confirmations.length).to.equal(1); + assert.equal(confirmations.length, 1) }); it('should be empty when type updated to same underlying SQL type', async () => { @@ -178,7 +178,7 @@ describe('column queries', () => { }, }); const { queries } = await userChangeQueries(blogInitial, blogFinal); - expect(queries).to.deep.equal([]); + assert.deepEqual(queries, []); }); it('should respect user primary key without adding a hidden id', async () => { @@ -199,10 +199,10 @@ describe('column queries', () => { }); const { queries } = await userChangeQueries(user, userFinal); - expect(queries[0]).to.not.be.undefined; + assert.equal(queries[0] !== undefined, true); const tempTableName = getTempTableName(queries[0]); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE \"${tempTableName}\" (\"name\" text UNIQUE, \"age\" integer NOT NULL, \"email\" text NOT NULL UNIQUE, \"mi\" text, \"id\" integer PRIMARY KEY)`, `INSERT INTO \"${tempTableName}\" (\"name\", \"age\", \"email\", \"mi\", \"id\") SELECT \"name\", \"age\", \"email\", \"mi\", \"id\" FROM \"Users\"`, 'DROP TABLE "Users"', @@ -222,7 +222,7 @@ describe('column queries', () => { const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'DROP TABLE "Users"', `CREATE TABLE "Users" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" text NOT NULL, "email" text NOT NULL UNIQUE, "mi" text)`, ]); @@ -239,7 +239,7 @@ describe('column queries', () => { const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'DROP TABLE "Users"', `CREATE TABLE "Users" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL UNIQUE, "mi" text, "phoneNumber" text NOT NULL)`, ]); @@ -257,10 +257,10 @@ describe('column queries', () => { }; const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries[0]).to.not.be.undefined; + assert.equal(queries[0] !== undefined, true); const tempTableName = getTempTableName(queries[0]); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE \"${tempTableName}\" (\"name\" text NOT NULL, \"age\" integer NOT NULL, \"email\" text NOT NULL UNIQUE, \"mi\" text, \"id\" integer PRIMARY KEY)`, `INSERT INTO \"${tempTableName}\" (\"name\", \"age\", \"email\", \"mi\") SELECT \"name\", \"age\", \"email\", \"mi\" FROM \"Users\"`, 'DROP TABLE "Users"', @@ -278,10 +278,10 @@ describe('column queries', () => { }; const { queries } = await userChangeQueries(user, userInitial); - expect(queries[0]).to.not.be.undefined; + assert.equal(queries[0] !== undefined, true); const tempTableName = getTempTableName(queries[0]); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE \"${tempTableName}\" (_id INTEGER PRIMARY KEY, \"name\" text NOT NULL, \"age\" integer NOT NULL, \"email\" text NOT NULL UNIQUE, \"mi\" text)`, `INSERT INTO \"${tempTableName}\" (\"name\", \"age\", \"email\", \"mi\") SELECT \"name\", \"age\", \"email\", \"mi\" FROM \"Users\"`, 'DROP TABLE "Users"', @@ -299,11 +299,11 @@ describe('column queries', () => { }; const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.have.lengthOf(4); + assert.equal(queries.length, 4) const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.be.a('string'); - expect(queries).to.deep.equal([ + assert.equal(typeof tempTableName, "string"); + assert.deepEqual(queries, [ `CREATE TABLE "${tempTableName}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL UNIQUE, "mi" text, "phoneNumber" text UNIQUE)`, `INSERT INTO "${tempTableName}" ("_id", "name", "age", "email", "mi") SELECT "_id", "name", "age", "email", "mi" FROM "Users"`, 'DROP TABLE "Users"', @@ -321,11 +321,12 @@ describe('column queries', () => { delete userFinal.columns.email; const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.have.lengthOf(4); + assert.equal(queries.length, 4) + assert.equal(queries.length, 4) const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.be.a('string'); - expect(queries).to.deep.equal([ + assert.equal(typeof tempTableName, "string"); + assert.deepEqual(queries, [ `CREATE TABLE "${tempTableName}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "mi" text)`, `INSERT INTO "${tempTableName}" ("_id", "name", "age", "mi") SELECT "_id", "name", "age", "mi" FROM "Users"`, 'DROP TABLE "Users"', @@ -351,11 +352,11 @@ describe('column queries', () => { }); const { queries } = await userChangeQueries(initial, userFinal); - expect(queries).to.have.lengthOf(4); + assert.equal(queries.length, 4) const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.be.a('string'); - expect(queries).to.deep.equal([ + assert.equal(typeof tempTableName, "string"); + assert.deepEqual(queries, [ `CREATE TABLE "${tempTableName}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" text NOT NULL DEFAULT CURRENT_TIMESTAMP, "email" text NOT NULL UNIQUE, "mi" text)`, `INSERT INTO "${tempTableName}" ("_id", "name", "age", "email", "mi") SELECT "_id", "name", "age", "email", "mi" FROM "Users"`, 'DROP TABLE "Users"', @@ -373,11 +374,11 @@ describe('column queries', () => { }); const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.have.lengthOf(4); + assert.equal(queries.length, 4) const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.be.a('string'); - expect(queries).to.deep.equal([ + assert.equal(typeof tempTableName, "string"); + assert.deepEqual(queries, [ `CREATE TABLE "${tempTableName}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL UNIQUE, "mi" text, "birthday" text NOT NULL DEFAULT CURRENT_TIMESTAMP)`, `INSERT INTO "${tempTableName}" ("_id", "name", "age", "email", "mi") SELECT "_id", "name", "age", "email", "mi" FROM "Users"`, 'DROP TABLE "Users"', @@ -403,11 +404,11 @@ describe('column queries', () => { const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.have.lengthOf(4); + assert.equal(queries.length, 4) const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.be.a('string'); - expect(queries).to.deep.equal([ + assert.equal(typeof tempTableName, "string"); + assert.deepEqual(queries, [ `CREATE TABLE "${tempTableName}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL UNIQUE, "mi" text NOT NULL)`, `INSERT INTO "${tempTableName}" ("_id", "name", "age", "email", "mi") SELECT "_id", "name", "age", "email", "mi" FROM "Users"`, 'DROP TABLE "Users"', @@ -425,11 +426,11 @@ describe('column queries', () => { }; const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.have.lengthOf(4); + assert.equal(queries.length, 4) const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.be.a('string'); - expect(queries).to.deep.equal([ + assert.equal(typeof tempTableName, "string"); + assert.deepEqual(queries, [ `CREATE TABLE "${tempTableName}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL UNIQUE, "email" text NOT NULL UNIQUE, "mi" text)`, `INSERT INTO "${tempTableName}" ("_id", "name", "age", "email", "mi") SELECT "_id", "name", "age", "email", "mi" FROM "Users"`, 'DROP TABLE "Users"', @@ -449,7 +450,7 @@ describe('column queries', () => { }; const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.deep.equal(['ALTER TABLE "Users" ADD COLUMN "birthday" text']); + assert.deepEqual(queries, ['ALTER TABLE "Users" ADD COLUMN "birthday" text']); }); it('when adding a required column with default', async () => { @@ -463,7 +464,7 @@ describe('column queries', () => { }); const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `ALTER TABLE "Users" ADD COLUMN "birthday" text NOT NULL DEFAULT '${defaultDate.toISOString()}'`, ]); }); @@ -480,7 +481,7 @@ describe('column queries', () => { }; const { queries } = await userChangeQueries(userInitial, userFinal); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'ALTER TABLE "Users" DROP COLUMN "age"', 'ALTER TABLE "Users" DROP COLUMN "mi"', ]); diff --git a/packages/db/test/unit/index-queries.test.js b/packages/db/test/unit/index-queries.test.js index ce0894d274..8f32ac7fe6 100644 --- a/packages/db/test/unit/index-queries.test.js +++ b/packages/db/test/unit/index-queries.test.js @@ -1,5 +1,5 @@ -import { expect } from 'chai'; -import { describe, it } from 'mocha'; +import { describe, it } from "node:test"; +import assert from "node:assert/strict"; import { getTableChangeQueries } from '../../dist/core/cli/migration-queries.js'; import { dbConfigSchema, tableSchema } from '../../dist/core/schemas.js'; import { column } from '../../dist/runtime/virtual.js'; @@ -37,7 +37,7 @@ describe('index queries', () => { newTable: dbConfig.tables.newTable, }); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'CREATE INDEX "newTable_age_name_idx" ON "user" ("age", "name")', 'CREATE UNIQUE INDEX "newTable_email_idx" ON "user" ("email")', ]); @@ -76,7 +76,7 @@ describe('index queries', () => { newTable: final.tables.user, }); - expect(queries).to.be.empty; + assert.equal(queries.length, 0) }); it('does not trigger queries when changing from legacy to new format', async () => { @@ -110,7 +110,7 @@ describe('index queries', () => { newTable: final.tables.user, }); - expect(queries).to.be.empty; + assert.equal(queries.length, 0) }); it('adds indexes', async () => { @@ -133,7 +133,7 @@ describe('index queries', () => { newTable: dbConfig.tables.newTable, }); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'CREATE INDEX "nameIdx" ON "user" ("name")', 'CREATE UNIQUE INDEX "emailIdx" ON "user" ("email")', ]); @@ -162,7 +162,7 @@ describe('index queries', () => { newTable: dbConfig.tables.newTable, }); - expect(queries).to.deep.equal(['DROP INDEX "nameIdx"', 'DROP INDEX "emailIdx"']); + assert.deepEqual(queries, ['DROP INDEX "nameIdx"', 'DROP INDEX "emailIdx"']); }); it('drops and recreates modified indexes', async () => { @@ -191,7 +191,7 @@ describe('index queries', () => { newTable: dbConfig.tables.newTable, }); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'DROP INDEX "nameIdx"', 'DROP INDEX "emailIdx"', 'CREATE UNIQUE INDEX "nameIdx" ON "user" ("name")', @@ -216,7 +216,7 @@ describe('index queries', () => { newTable: userFinal, }); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'CREATE INDEX "nameIdx" ON "user" ("name")', 'CREATE UNIQUE INDEX "emailIdx" ON "user" ("email")', ]); @@ -244,7 +244,7 @@ describe('index queries', () => { newTable: final, }); - expect(queries).to.deep.equal(['DROP INDEX "nameIdx"', 'DROP INDEX "emailIdx"']); + assert.deepEqual(queries, ['DROP INDEX "nameIdx"', 'DROP INDEX "emailIdx"']); }); it('drops and recreates modified indexes', async () => { @@ -272,7 +272,7 @@ describe('index queries', () => { newTable: final, }); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ 'DROP INDEX "nameIdx"', 'DROP INDEX "emailIdx"', 'CREATE UNIQUE INDEX "nameIdx" ON "user" ("name")', diff --git a/packages/db/test/unit/reference-queries.test.js b/packages/db/test/unit/reference-queries.test.js index 76f6341e16..1660922a1b 100644 --- a/packages/db/test/unit/reference-queries.test.js +++ b/packages/db/test/unit/reference-queries.test.js @@ -1,5 +1,5 @@ -import { expect } from 'chai'; -import { describe, it } from 'mocha'; +import { describe, it } from "node:test"; +import assert from "node:assert/strict"; import { getTableChangeQueries } from '../../dist/core/cli/migration-queries.js'; import { tablesSchema } from '../../dist/core/schemas.js'; import { column, defineTable } from '../../dist/runtime/virtual.js'; @@ -59,11 +59,11 @@ describe('reference queries', () => { const { queries } = await userChangeQueries(Initial, Final); - expect(queries[0]).to.not.be.undefined; + assert.equal(queries[0] !== undefined, true); const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.not.be.undefined; + assert.notEqual(typeof tempTableName, "undefined"); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE \"${tempTableName}\" (_id INTEGER PRIMARY KEY, \"to\" integer NOT NULL REFERENCES \"User\" (\"id\"), \"toName\" text NOT NULL, \"subject\" text NOT NULL, \"body\" text NOT NULL)`, `INSERT INTO \"${tempTableName}\" (\"_id\", \"to\", \"toName\", \"subject\", \"body\") SELECT \"_id\", \"to\", \"toName\", \"subject\", \"body\" FROM \"User\"`, 'DROP TABLE "User"', @@ -84,11 +84,11 @@ describe('reference queries', () => { const { queries } = await userChangeQueries(Initial, Final); - expect(queries[0]).to.not.be.undefined; + assert.equal(queries[0] !== undefined, true); const tempTableName = getTempTableName(queries[0]); - expect(tempTableName).to.not.be.undefined; + assert.notEqual(typeof tempTableName, "undefined"); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE \"${tempTableName}\" (_id INTEGER PRIMARY KEY, \"to\" integer NOT NULL, \"toName\" text NOT NULL, \"subject\" text NOT NULL, \"body\" text NOT NULL)`, `INSERT INTO \"${tempTableName}\" (\"_id\", \"to\", \"toName\", \"subject\", \"body\") SELECT \"_id\", \"to\", \"toName\", \"subject\", \"body\" FROM \"User\"`, 'DROP TABLE "User"', @@ -108,10 +108,10 @@ describe('reference queries', () => { }); const { queries } = await userChangeQueries(Initial, Final); - expect(queries[0]).to.not.be.undefined; + assert.equal(queries[0] !== undefined, true); const tempTableName = getTempTableName(queries[0]); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE \"${tempTableName}\" (_id INTEGER PRIMARY KEY, \"to\" integer NOT NULL, \"toName\" text NOT NULL, \"subject\" text NOT NULL, \"body\" text NOT NULL, \"from\" integer REFERENCES \"User\" (\"id\"))`, `INSERT INTO \"${tempTableName}\" (\"_id\", \"to\", \"toName\", \"subject\", \"body\") SELECT \"_id\", \"to\", \"toName\", \"subject\", \"body\" FROM \"User\"`, 'DROP TABLE "User"', @@ -149,14 +149,13 @@ describe('reference queries', () => { const addedForeignKey = await userChangeQueries(InitialWithoutFK, Final); const updatedForeignKey = await userChangeQueries(InitialWithDifferentFK, Final); - expect(addedForeignKey.queries[0]).to.not.be.undefined; - expect(updatedForeignKey.queries[0]).to.not.be.undefined; - - expect(addedForeignKey.queries).to.deep.equal( + assert.notEqual(typeof addedForeignKey.queries[0], "undefined"); + assert.notEqual(typeof updatedForeignKey.queries[0], "undefined"); + assert.deepEqual(addedForeignKey.queries, expected(getTempTableName(addedForeignKey.queries[0])) ); - expect(updatedForeignKey.queries).to.deep.equal( + assert.deepEqual(updatedForeignKey.queries, expected(getTempTableName(updatedForeignKey.queries[0])) ); }); diff --git a/packages/db/test/unit/reset-queries.test.js b/packages/db/test/unit/reset-queries.test.js index 4e91d1d8d7..ac77cf695a 100644 --- a/packages/db/test/unit/reset-queries.test.js +++ b/packages/db/test/unit/reset-queries.test.js @@ -1,5 +1,5 @@ -import { expect } from 'chai'; -import { describe, it } from 'mocha'; +import { describe, it } from "node:test"; +import assert from "node:assert/strict"; import { getMigrationQueries } from '../../dist/core/cli/migration-queries.js'; import { MIGRATION_VERSION } from '../../dist/core/consts.js'; import { tableSchema } from '../../dist/core/schemas.js'; @@ -31,7 +31,7 @@ describe('force reset', () => { reset: true, }); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `DROP TABLE IF EXISTS "${TABLE_NAME}"`, `CREATE TABLE "${TABLE_NAME}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL UNIQUE, "mi" text)`, ]); @@ -46,7 +46,7 @@ describe('force reset', () => { reset: true, }); - expect(queries).to.deep.equal([ + assert.deepEqual(queries, [ `CREATE TABLE "${TABLE_NAME}" (_id INTEGER PRIMARY KEY, "name" text NOT NULL, "age" integer NOT NULL, "email" text NOT NULL UNIQUE, "mi" text)`, ]); }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1658c74804..cbc2890560 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -571,7 +571,7 @@ importers: version: 3.0.0 debug: specifier: ^4.3.4 - version: 4.3.4(supports-color@8.1.1) + version: 4.3.4 deterministic-object-hash: specifier: ^2.0.2 version: 2.0.2 @@ -3998,9 +3998,6 @@ importers: '@types/diff': specifier: ^5.2.1 version: 5.2.1 - '@types/mocha': - specifier: ^10.0.6 - version: 10.0.6 '@types/prompts': specifier: ^2.4.9 version: 2.4.9 @@ -4013,15 +4010,9 @@ importers: astro-scripts: specifier: workspace:* version: link:../../scripts - chai: - specifier: ^5.1.1 - version: 5.1.1 cheerio: specifier: 1.0.0-rc.12 version: 1.0.0-rc.12 - mocha: - specifier: ^10.4.0 - version: 10.4.0 typescript: specifier: ^5.4.5 version: 5.4.5 @@ -5586,7 +5577,7 @@ importers: version: 4.0.0 debug: specifier: ^4.3.4 - version: 4.3.4(supports-color@8.1.1) + version: 4.3.4 dlv: specifier: ^1.1.3 version: 1.1.3 @@ -5878,7 +5869,7 @@ packages: '@babel/traverse': 7.24.5 '@babel/types': 7.24.5 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -6273,7 +6264,7 @@ packages: '@babel/helper-split-export-declaration': 7.24.5 '@babel/parser': 7.24.5 '@babel/types': 7.24.5 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -7441,7 +7432,7 @@ packages: engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 espree: 10.0.1 globals: 14.0.0 ignore: 5.3.1 @@ -7471,7 +7462,7 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -8182,7 +8173,7 @@ packages: '@prefresh/vite': 2.4.5(preact@10.21.0) '@rollup/pluginutils': 4.2.1 babel-plugin-transform-hook-names: 1.0.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 kolorist: 1.8.0 magic-string: 0.30.5 node-html-parser: 6.1.13 @@ -8408,7 +8399,7 @@ packages: optional: true dependencies: '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.16)(vite@5.2.11) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 svelte: 4.2.16 vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1) transitivePeerDependencies: @@ -8426,7 +8417,7 @@ packages: optional: true dependencies: '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.0)(svelte@4.2.16)(vite@5.2.11) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.10 @@ -8678,10 +8669,6 @@ packages: resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} dev: true - /@types/mocha@10.0.6: - resolution: {integrity: sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg==} - dev: true - /@types/ms@0.7.34: resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} @@ -8873,7 +8860,7 @@ packages: '@typescript-eslint/type-utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) '@typescript-eslint/visitor-keys': 7.8.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 9.2.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -8899,7 +8886,7 @@ packages: '@typescript-eslint/types': 7.8.0 '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) '@typescript-eslint/visitor-keys': 7.8.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 9.2.0 typescript: 5.4.5 transitivePeerDependencies: @@ -8926,7 +8913,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 eslint: 9.2.0 ts-api-utils: 1.3.0(typescript@5.4.5) typescript: 5.4.5 @@ -8950,7 +8937,7 @@ packages: dependencies: '@typescript-eslint/types': 7.8.0 '@typescript-eslint/visitor-keys': 7.8.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 @@ -8992,7 +8979,7 @@ packages: resolution: {integrity: sha512-kTwMUQ8xtAZaC4wb2XuLkPqFVBj2dNBueMQ89NWEuw87k2nLBbuafeG5cob/QEr6YduxIdTVUjix0MtC7mPlmg==} dependencies: '@typescript/vfs': 1.3.5 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 lz-string: 1.5.0 transitivePeerDependencies: - supports-color @@ -9001,7 +8988,7 @@ packages: /@typescript/vfs@1.3.4: resolution: {integrity: sha512-RbyJiaAGQPIcAGWFa3jAXSuAexU4BFiDRF1g3hy7LmRqfNpYlTQWGXjcrOaVZjJ8YkkpuwG0FcsYvtWQpd9igQ==} dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -9009,7 +8996,7 @@ packages: /@typescript/vfs@1.3.5: resolution: {integrity: sha512-pI8Saqjupf9MfLw7w2+og+fmb0fZS0J6vsKXXrp4/PDXEFvntgzXmChCXC/KefZZS0YGS6AT8e0hGAJcTsdJlg==} dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -9416,7 +9403,7 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -9425,7 +9412,7 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -9459,11 +9446,6 @@ packages: string-width: 4.2.3 dev: false - /ansi-colors@4.1.1: - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} - engines: {node: '>=6'} - dev: true - /ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -9597,11 +9579,6 @@ packages: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: false - /assertion-error@2.0.1: - resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} - engines: {node: '>=12'} - dev: true - /astring@1.8.6: resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} hasBin: true @@ -9853,10 +9830,6 @@ packages: wcwidth: 1.0.1 dev: true - /browser-stdout@1.3.1: - resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} - dev: true - /browserslist@4.23.0: resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -9936,6 +9909,7 @@ packages: /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} + dev: false /camelcase@7.0.1: resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} @@ -9965,17 +9939,6 @@ packages: type-detect: 4.0.8 dev: false - /chai@5.1.1: - resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} - engines: {node: '>=12'} - dependencies: - assertion-error: 2.0.1 - check-error: 2.1.1 - deep-eql: 5.0.1 - loupe: 3.1.0 - pathval: 2.0.0 - dev: true - /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -10022,11 +9985,6 @@ packages: get-func-name: 2.0.2 dev: false - /check-error@2.1.1: - resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} - engines: {node: '>= 16'} - dev: true - /cheerio-select@2.1.0: resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} dependencies: @@ -10051,21 +10009,6 @@ packages: parse5-htmlparser2-tree-adapter: 7.0.0 dev: true - /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} - dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 - dev: true - /chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} @@ -10154,14 +10097,6 @@ packages: wrap-ansi: 6.2.0 dev: true - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - dev: true - /cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} @@ -10505,7 +10440,7 @@ packages: dependencies: ms: 2.0.0 - /debug@4.3.4(supports-color@8.1.1): + /debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: @@ -10515,7 +10450,6 @@ packages: optional: true dependencies: ms: 2.1.2 - supports-color: 8.1.1 /decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} @@ -10530,11 +10464,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /decamelize@4.0.0: - resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} - engines: {node: '>=10'} - dev: true - /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} dev: true @@ -10559,11 +10488,6 @@ packages: type-detect: 4.0.8 dev: false - /deep-eql@5.0.1: - resolution: {integrity: sha512-nwQCf6ne2gez3o1MxWifqkciwt0zhl0LO1/UwVu4uMBuPmflWM4oQ70XMqHqnBJA+nhzncaqL9HVL6KkHJ28lw==} - engines: {node: '>=6'} - dev: true - /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true @@ -10697,11 +10621,6 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: false - /diff@5.0.0: - resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} - engines: {node: '>=0.3.1'} - dev: true - /diff@5.2.0: resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} engines: {node: '>=0.3.1'} @@ -11157,7 +11076,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 escape-string-regexp: 4.0.0 eslint-scope: 8.0.1 eslint-visitor-keys: 4.0.0 @@ -11460,11 +11379,6 @@ packages: keyv: 4.5.4 dev: true - /flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true - dev: true - /flatted@3.3.1: resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} dev: true @@ -11623,6 +11537,7 @@ packages: /get-func-name@2.0.2: resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} + dev: false /get-intrinsic@1.2.4: resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} @@ -11698,17 +11613,6 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.0.1 - once: 1.4.0 - dev: true - /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} @@ -12057,6 +11961,7 @@ packages: /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true + dev: false /hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} @@ -12142,7 +12047,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -12152,7 +12057,7 @@ packages: engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -12162,7 +12067,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: true @@ -12428,11 +12333,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} - dev: true - /is-plain-obj@4.1.0: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} engines: {node: '>=12'} @@ -12493,11 +12393,6 @@ packages: which-typed-array: 1.1.15 dev: true - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - dev: true - /is-unicode-supported@1.3.0: resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} engines: {node: '>=12'} @@ -12825,14 +12720,6 @@ packages: resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} dev: true - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} - dependencies: - chalk: 4.1.2 - is-unicode-supported: 0.1.0 - dev: true - /log-symbols@6.0.0: resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} engines: {node: '>=18'} @@ -12867,12 +12754,6 @@ packages: get-func-name: 2.0.2 dev: false - /loupe@3.1.0: - resolution: {integrity: sha512-qKl+FrLXUhFuHUoDJG7f8P8gEMHq9NFS0c6ghXG1J0rldmZFQZoNVv/vyirE9qwCIhWZDsvEFd1sbFu3GvRQFg==} - dependencies: - get-func-name: 2.0.2 - dev: true - /lower-case@1.1.4: resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} dev: false @@ -13581,7 +13462,7 @@ packages: resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} dependencies: '@types/debug': 4.1.12 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.0 @@ -13641,13 +13522,6 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch@5.0.1: - resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - dev: true - /minimatch@7.4.6: resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} engines: {node: '>=10'} @@ -13747,33 +13621,6 @@ packages: ufo: 1.5.3 dev: false - /mocha@10.4.0: - resolution: {integrity: sha512-eqhGB8JKapEYcC4ytX/xrzKforgEc3j1pGlAXVy3eRwrtAy5/nIfT1SvgGzfN0XZZxeLq0aQWkOUAmqIJiv+bA==} - engines: {node: '>= 14.0.0'} - hasBin: true - dependencies: - ansi-colors: 4.1.1 - browser-stdout: 1.3.1 - chokidar: 3.5.3 - debug: 4.3.4(supports-color@8.1.1) - diff: 5.0.0 - escape-string-regexp: 4.0.0 - find-up: 5.0.0 - glob: 8.1.0 - he: 1.2.0 - js-yaml: 4.1.0 - log-symbols: 4.1.0 - minimatch: 5.0.1 - ms: 2.1.3 - serialize-javascript: 6.0.0 - strip-json-comments: 3.1.1 - supports-color: 8.1.1 - workerpool: 6.2.1 - yargs: 16.2.0 - yargs-parser: 20.2.4 - yargs-unparser: 2.0.0 - dev: true - /mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} @@ -14301,11 +14148,6 @@ packages: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} dev: false - /pathval@2.0.0: - resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} - engines: {node: '>= 14.16'} - dev: true - /perfect-debounce@1.0.0: resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} dev: false @@ -14911,12 +14753,6 @@ packages: engines: {node: '>=8'} dev: true - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - dependencies: - safe-buffer: 5.2.1 - dev: true - /range-parser@1.2.1: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} engines: {node: '>= 0.6'} @@ -15515,12 +15351,6 @@ packages: transitivePeerDependencies: - supports-color - /serialize-javascript@6.0.0: - resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} - dependencies: - randombytes: 2.1.0 - dev: true - /seroval-plugins@1.0.5(seroval@1.0.5): resolution: {integrity: sha512-8+pDC1vOedPXjKG7oz8o+iiHrtF2WswaMQJ7CKFpccvSYfrzmvKY9zOJWCg+881722wIHfwkdnRmiiDm9ym+zQ==} engines: {node: '>=10'} @@ -16081,12 +15911,6 @@ packages: dependencies: has-flag: 4.0.0 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - dependencies: - has-flag: 4.0.0 - /supports-hyperlinks@2.3.0: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} @@ -16883,7 +16707,7 @@ packages: hasBin: true dependencies: cac: 6.7.14 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 pathe: 1.1.2 picocolors: 1.0.0 vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1) @@ -16912,7 +16736,7 @@ packages: dependencies: '@antfu/utils': 0.7.8 '@rollup/pluginutils': 5.1.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 error-stack-parser-es: 0.1.1 fs-extra: 11.2.0 open: 10.1.0 @@ -17098,7 +16922,7 @@ packages: '@vitest/utils': 1.6.0 acorn-walk: 8.3.2 chai: 4.4.1 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.4 execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.10 @@ -17416,10 +17240,6 @@ packages: string-width: 5.1.2 dev: false - /workerpool@6.2.1: - resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==} - dev: true - /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} @@ -17525,25 +17345,10 @@ packages: decamelize: 1.2.0 dev: true - /yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - dev: true - /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} - /yargs-unparser@2.0.0: - resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} - engines: {node: '>=10'} - dependencies: - camelcase: 6.3.0 - decamelize: 4.0.0 - flat: 5.0.2 - is-plain-obj: 2.1.0 - dev: true - /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} engines: {node: '>=8'} @@ -17561,19 +17366,6 @@ packages: yargs-parser: 18.1.3 dev: true - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} - dependencies: - cliui: 7.0.4 - escalade: 3.1.2 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.4 - dev: true - /yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'}