Update domain references to pezkuwichain.app

This commit is contained in:
2026-01-06 12:20:56 +03:00
parent 8d28b36f9c
commit 49a6fd372f
31 changed files with 216 additions and 57 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
// Copyright 2017-2025 @polkadot/dev authors & contributors
// Copyright 2017-2025 @pezkuwi/dev authors & contributors
// SPDX-License-Identifier: Apache-2.0
export {};
throw new Error('@polkadot/dev is not meant to be imported via root. Rather if provides a set of shared dependencies, a collection of scripts, base configs and some loaders accessed via the scripts. It is only meant to be used as a shared resource by all @polkadot/* projects');
throw new Error('@pezkuwi/dev is not meant to be imported via root. Rather if provides a set of shared dependencies, a collection of scripts, base configs and some loaders accessed via the scripts. It is only meant to be used as a shared resource by all @polkadot/* projects');
+3 -3
View File
@@ -1,6 +1,6 @@
// Copyright 2017-2025 @polkadot/dev authors & contributors
// Copyright 2017-2025 @pezkuwi/dev authors & contributors
// SPDX-License-Identifier: Apache-2.0
// Do not edit, auto-generated by @polkadot/dev
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@polkadot/dev', path: 'auto', type: 'auto', version: '0.84.2' };
export const packageInfo = { name: '@pezkuwi/dev', path: 'auto', type: 'auto', version: '0.84.2' };
+4 -4
View File
@@ -1,7 +1,7 @@
// Copyright 2017-2025 @polkadot/dev authors & contributors
// Copyright 2017-2025 @pezkuwi/dev authors & contributors
// SPDX-License-Identifier: Apache-2.0
/// <reference types="@polkadot/dev-test/globals.d.ts" />
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
import fs from 'node:fs';
import path from 'node:path';
@@ -74,7 +74,7 @@ describe('as-built output checks', (): void => {
idxTypes.forEach((type) =>
it(`contains import(...) in ${type}`, (): void => {
expect(
jsIdx[type].includes("const { sum } = await import('@polkadot/dev/rootJs/dynamic.mjs');")
jsIdx[type].includes("const { sum } = await import('@pezkuwi/dev/rootJs/dynamic.mjs');")
).toBe(true);
})
);
@@ -86,7 +86,7 @@ describe('as-built output checks', (): void => {
expect(
jsIdx[type].includes(
type === 'cjs'
? 'require("@polkadot/dev/rootJs/testJson.json")'
? 'require("@pezkuwi/dev/rootJs/testJson.json")'
// eslint-disable-next-line no-useless-escape
: "import testJson from '@pezkuwi/dev/rootJs/testJson.json' assert { type: \'json\' };"
)
+1 -1
View File
@@ -1,7 +1,7 @@
// Copyright 2017-2025 @polkadot/dev authors & contributors
// SPDX-License-Identifier: Apache-2.0
/// <reference types="@polkadot/dev-test/globals.d.ts" />
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
import { fireEvent, render, screen } from '@testing-library/react';
import { strict as assert } from 'node:assert';
+1 -1
View File
@@ -8,6 +8,6 @@ export interface Something {
foo: string;
}
declare module '@polkadot/dev/types' {
declare module '@pezkuwi/dev/types' {
const blah: string;
}
+2 -2
View File
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @polkadot/dev authors & contributors
// Copyright 2017-2025 @pezkuwi/dev authors & contributors
// SPDX-License-Identifier: Apache-2.0
/** This should appear as-is in the output with: 1. extension added, 2. augmented.d.ts correct */
@@ -20,7 +20,7 @@ export function bigIntExp (): bigint {
export async function dynamic (a: number, b: number): Promise<number> {
// NOTE we go via this path so it points to the same location in both ESM
// and CJS output (a './dynamic' import would be different otherwise)
const { sum } = await import('@polkadot/dev/rootJs/dynamic.mjs');
const { sum } = await import('@pezkuwi/dev/rootJs/dynamic.mjs');
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return sum(a, b);
+1 -1
View File
@@ -1,7 +1,7 @@
// Copyright 2017-2025 @polkadot/dev authors & contributors
// SPDX-License-Identifier: Apache-2.0
/// <reference types="@polkadot/dev-test/globals.d.ts" />
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
/* global describe, expect, it */